@model MALDFGASSURANCE.Models.ACTE @{ ViewBag.Title = "Edit"; }

MODIFIER UN ACTE

@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" }) @Html.HiddenFor(model => model.CODE_ACTE) @if (ViewBag.Message != null) {

@ViewBag.Message

}
@Html.LabelFor(model => model.ID_TYPE_PRESCRIPTION, "TYPE DE PRESCRIPTION", htmlAttributes: new { @class = "control-label " }) @Html.DropDownList("ID_TYPE_PRESCRIPTION", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.ID_TYPE_PRESCRIPTION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.LIBELLE_ACTE,"ACTE", htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.LIBELLE_ACTE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.LIBELLE_ACTE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIX_NORMAL,"PRIX NORMAL", htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.PRIX_NORMAL, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.PRIX_NORMAL, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIX_FERIE,"PRIX FERIE", htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.PRIX_FERIE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.PRIX_FERIE, "", new { @class = "text-danger" })
}