Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. @using (Html.BeginForm("MinhaAction", "MeuController", FormMethod.Post ))
  2. {
  3. <div>
  4. <table>
  5. <thead>
  6. <tr>
  7. <th>Empresa</th>
  8. <th>Cliente</th>
  9. <th>Situação</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. @foreach (var item in Model)
  14. {
  15. <tr>
  16. <td><a href="@Url.Action("MinhaAction", "MeuController", item)">@item.Empresa</a></td>
  17. <td><a href="@Url.Action("MinhaAction", "MeuController", item)">@item.Cliente</a></td>
  18. <td><a href="@Url.Action("MinhaAction", "MeuController", item)">@item.Situacao</a></td>
  19. </tr>
  20. }
  21. </tbody>
  22. </table>
  23. </div>
  24. }
  25.  
  26. <button type="submit">Enviar</button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement