Delete.cshtml 871 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @model CD67.ModeleMVC.Entity.PARAM
  2. @{
  3. ViewBag.Title = "Delete";
  4. Layout = "~/Views/Shared/_AppLayout.cshtml";
  5. }
  6. <h2>Delete</h2>
  7. <h3>Are you sure you want to delete this?</h3>
  8. <div>
  9. <h4>PARAM</h4>
  10. <hr />
  11. <dl class="dl-horizontal">
  12. <dt>
  13. @Html.DisplayNameFor(model => model.PRM_LIB1)
  14. </dt>
  15. <dd>
  16. @Html.DisplayFor(model => model.PRM_LIB1)
  17. </dd>
  18. <dt>
  19. @Html.DisplayNameFor(model => model.PRM_LIB2)
  20. </dt>
  21. <dd>
  22. @Html.DisplayFor(model => model.PRM_LIB2)
  23. </dd>
  24. </dl>
  25. @using (Html.BeginForm()) {
  26. @Html.AntiForgeryToken()
  27. <div class="form-actions no-color">
  28. <input type="submit" value="Delete" class="btn btn-default" /> |
  29. @Html.ActionLink("Back to List", "Index")
  30. </div>
  31. }
  32. </div>