????
Current Path : C:/inetpub/vhost/lantha.gdtsolutions.vn/api/Views/CongNoKhachHangs/ |
Current File : C:/inetpub/vhost/lantha.gdtsolutions.vn/api/Views/CongNoKhachHangs/Create.cshtml |
@model ApiGDTVietnam.DataProvider.EF.Sale_CongNoKhachHang @{ ViewBag.Title = "Create"; } <h2>Create</h2> @using (Html.BeginForm()) { @Html.AntiForgeryToken() <div class="form-horizontal"> <h4>Sale_CongNoKhachHang</h4> <hr /> @Html.ValidationSummary(true, "", new { @class = "text-danger" }) <div class="form-group"> @Html.LabelFor(model => model.NgayTao, htmlAttributes: new { @class = "control-label col-md-2" }) <div class="col-md-10"> @Html.EditorFor(model => model.NgayTao, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.NgayTao, "", new { @class = "text-danger" }) </div> </div> <div class="form-group"> @Html.LabelFor(model => model.KhachHang_Id, "KhachHang_Id", htmlAttributes: new { @class = "control-label col-md-2" }) <div class="col-md-10"> @Html.DropDownList("KhachHang_Id", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.KhachHang_Id, "", new { @class = "text-danger" }) </div> </div> <div class="form-group"> @Html.LabelFor(model => model.MaChungTu, htmlAttributes: new { @class = "control-label col-md-2" }) <div class="col-md-10"> @Html.EditorFor(model => model.MaChungTu, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.MaChungTu, "", new { @class = "text-danger" }) </div> </div> <div class="form-group"> @Html.LabelFor(model => model.LoaiChungTu, htmlAttributes: new { @class = "control-label col-md-2" }) <div class="col-md-10"> @Html.EditorFor(model => model.LoaiChungTu, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.LoaiChungTu, "", new { @class = "text-danger" }) </div> </div> <div class="form-group"> @Html.LabelFor(model => model.GiaTri, htmlAttributes: new { @class = "control-label col-md-2" }) <div class="col-md-10"> @Html.EditorFor(model => model.GiaTri, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.GiaTri, "", new { @class = "text-danger" }) </div> </div> <div class="form-group"> @Html.LabelFor(model => model.SoDuNo, htmlAttributes: new { @class = "control-label col-md-2" }) <div class="col-md-10"> @Html.EditorFor(model => model.SoDuNo, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.SoDuNo, "", new { @class = "text-danger" }) </div> </div> <div class="form-group"> <div class="col-md-offset-2 col-md-10"> <input type="submit" value="Create" class="btn btn-default" /> </div> </div> </div> } <div> @Html.ActionLink("Back to List", "Index") </div> @section Scripts { @Scripts.Render("~/bundles/jqueryval") }