@using (Html.BeginForm("MinhaAction", "MeuController", FormMethod.Post ))
{
<div>
<table>
<thead>
<tr>
<th>Empresa</th>
<th>Cliente</th>
<th>Situação</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td><a href="@Url.Action("MinhaAction", "MeuController", item)">@item.Empresa</a></td>
<td><a href="@Url.Action("MinhaAction", "MeuController", item)">@item.Cliente</a></td>
<td><a href="@Url.Action("MinhaAction", "MeuController", item)">@item.Situacao</a></td>
</tr>
}
</tbody>
</table>
</div>
}
Is it possible to submit a form in this way? What is the solution to this question?