@model MALDFGASSURANCE.Models.MONT_FACT_CLI @{ ViewBag.Title = "Create"; Layout = "~/Views/Shared/_Layout.cshtml"; }

Create

@using (Html.BeginForm()) { @Html.AntiForgeryToken()

MONT_FACT_CLI


@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ID, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.ID, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ID, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PERIODE, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.PERIODE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.PERIODE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Montant, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Montant, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Montant, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Index")