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

Create

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

ItemStock


@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ItemID, "ItemID", htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownList("ItemID", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.ItemID, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.LocationID, "LocationID", htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownList("LocationID", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.LocationID, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.QtyConf, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.QtyConf, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.QtyConf, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Note, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Note, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Note, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.dtLastUpd, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.dtLastUpd, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.dtLastUpd, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Index")
@section Scripts { @Scripts.Render("~/bundles/jqueryval") }