| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- @model CD67.ModeleMVC.Entity.PARAM
- @{
- ViewBag.Title = "Edit";
- Layout = "~/Views/Shared/_AppLayout.cshtml";
- }
- <h2>Edit</h2>
- @using (Html.BeginForm())
- {
- @Html.AntiForgeryToken()
-
- <div class="form-horizontal">
- <h4>PARAM</h4>
- <hr />
- @Html.ValidationSummary(true, "", new { @class = "text-danger" })
- @Html.HiddenFor(model => model.PRM_CLE)
- <div class="form-group">
- @Html.LabelFor(model => model.PRM_LIB1, htmlAttributes: new { @class = "control-label col-md-2" })
- <div class="col-md-10">
- @Html.EditorFor(model => model.PRM_LIB1, new { htmlAttributes = new { @class = "form-control" } })
- @Html.ValidationMessageFor(model => model.PRM_LIB1, "", new { @class = "text-danger" })
- </div>
- </div>
- <div class="form-group">
- @Html.LabelFor(model => model.PRM_LIB2, htmlAttributes: new { @class = "control-label col-md-2" })
- <div class="col-md-10">
- @Html.EditorFor(model => model.PRM_LIB2, new { htmlAttributes = new { @class = "form-control" } })
- @Html.ValidationMessageFor(model => model.PRM_LIB2, "", new { @class = "text-danger" })
- </div>
- </div>
- <div class="form-group">
- <div class="col-md-offset-2 col-md-10">
- <input type="submit" value="Save" class="btn btn-default" />
- </div>
- </div>
- </div>
- }
- <div>
- @Html.ActionLink("Back to List", "Index")
- </div>
|