Guest User

Untitled

a guest
Apr 24th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <table class="table table-hover">
  2. <thead>
  3. <th>ID</th>
  4. <th>Название товара</th>
  5. <th>Цена</th>
  6. <th>Категория</th>
  7. <th>Оплата рабочей группе</th>
  8. </thead>
  9. @foreach (var b in ViewBag.Products)
  10. {
  11. <tr>
  12. <td><p>@b.ID</p></td>
  13. <td><p>@b.name</p></td>
  14. <td><p>@b.price</p></td>
  15. <td><p>@b.category</p></td>
  16. <td><p>@b.salary</p></td>
  17. <td><p><a href="/Home/DeleteProduct/@b.ID">удалить</a></p></td>
  18. <td>
  19. <p>
  20. @using (Html.BeginForm("EditProduct", "Home", FormMethod.Get))
  21. {
  22. <input type="hidden" value="@b.ID" name="ID" />
  23. <input type="hidden" value="@b.name" name="name" />
  24. <input type="hidden" value="@b.price" name="price" />
  25. <input type="hidden" value="@b.categoryID" name="categoryID" />
  26. <input type="hidden" value="@b.salary" name="salary" />
  27. <input type="submit" value="изменить" class="active" />
  28. }
  29. </p>
  30. </td>
  31. </tr>
  32. }
  33. </table>
Add Comment
Please, Sign In to add comment