| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @model CD67.ModeleMVC.Entity.PARAM
- @{
- ViewBag.Title = "Delete";
- Layout = "~/Views/Shared/_AppLayout.cshtml";
- }
- <h2>Delete</h2>
- <h3>Are you sure you want to delete this?</h3>
- <div>
- <h4>PARAM</h4>
- <hr />
- <dl class="dl-horizontal">
- <dt>
- @Html.DisplayNameFor(model => model.PRM_LIB1)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.PRM_LIB1)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => model.PRM_LIB2)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.PRM_LIB2)
- </dd>
- </dl>
- @using (Html.BeginForm()) {
- @Html.AntiForgeryToken()
- <div class="form-actions no-color">
- <input type="submit" value="Delete" class="btn btn-default" /> |
- @Html.ActionLink("Back to List", "Index")
- </div>
- }
- </div>
|