@model StockManMVC.Models.ItemFamily @{ ViewBag.Title = "Create"; } @using (Html.BeginForm()) { @Html.AntiForgeryToken()
Crea nuova Famiglia Articoli
@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.Descr, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Descr, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Descr, "", new { @class = "text-danger" })
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }