@model StockManMVC.Models.vItemFlux2Save @{ ViewBag.Title = "Create"; }

Create

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

vItemFlux2Save


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