@Html.ActionLink("Tạo ", "Create")
Mã khách hàng mua Tên khách hàng mua Địa 80 Điện thoại Thu nhập @foreach (var item in Model) { @Html.DisplayFor(modelItem => item.MAKH) @Html.DisplayFor(modelItem => item.TENKH) @Html.DisplayFor(modelItem => item.DIACHI) @Html.DisplayFor(modelItem => item.DIENTHOAI) @Html.DisplayFor(modelItem => item.THUNHAP) @Html.ActionLink("Chỉnh sửa", "Edit", new { id=item.MAKH }) | @Html.ActionLink("chi tiết", "Details", new { id=item.MAKH }) | @Html.ActionLink("Xóa", "Delete", new { id=item.MAKH }) } 81 2.6.Chức chỉnh sửa: 2.6.1.Giao diện chức chỉnh sửa: 2.6.2 Mã lệnh Controller chức chỉnh sửa: public ActionResult Edit(String id) { var khm = db.KHACHHANGMUAs.Find(id); return View(khm); } [HttpPost] public ActionResult Edit(KHACHHANGMUA khm) { var updatekhm = db.KHACHHANGMUAs.Find(khm.MAKH); updatekhm.MAKH = khm.MAKH; updatekhm.TENKH = khm.TENKH; updatekhm.DIACHI = khm.DIACHI; updatekhm.DIENTHOAI = khm.DIENTHOAI; updatekhm.THUNHAP= khm.THUNHAP; } db.SaveChanges(); return RedirectToAction("Index"); 2.6.3 Mã lệnh Edit chức chỉnh sửa: @model TIEULUAN36.Models.KHACHHANGMUA @{ 82 } ViewBag.Title = "Edit"; Chỉnh sửa @using (Html.BeginForm()) { @Html.AntiForgeryToken() Khách hàng mua @Html.ValidationSummary(true, "", new { @class = "text-danger" }) @Html.HiddenFor(model => model.MAKH) Mã Khách hàng mua @Html.EditorFor(model => model.MAKH, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.MAKH, "", new { @class = "text-danger" }) Tên khách hàng mua @Html.EditorFor(model => model.TENKH, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.TENKH, "", new { @class = "text-danger" }) Địa @Html.EditorFor(model => model.DIACHI, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DIACHI, "", new { @class = "text-danger" }) 83 Điện thoại @Html.EditorFor(model => model.DIENTHOAI, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DIENTHOAI, "", new { @class = "text-danger" }) Thu nhập @Html.EditorFor(model => model.THUNHAP, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.THUNHAP, "", new { @class = "text-danger" }) } @Html.ActionLink("Back to List", "Index") @section Scripts { @Scripts.Render("~/bundles/jqueryval") } 84 2.7.Chức thêm: 2.7.1.Giao diện chức thêm: 2.7.2.Mã lệnh Controller chức thêm: [HttpGet] public ActionResult Create() { return View(); } [HttpPost] public ActionResult Create(KHACHHANGMUA khm) { db.KHACHHANGMUAs.Add(khm); db.SaveChanges(); return RedirectToAction("Index"); } 2.7.3.Mã lệnh Create chức thêm: @model TIEULUAN36.Models.KHACHHANGMUA @{ } ViewBag.Title = "Create"; Tạo mới 85 @using (Html.BeginForm()) { @Html.AntiForgeryToken() Khách hàng mua @Html.ValidationSummary(true, "", new { @class = "text-danger" }) Mã khách hàng mua @Html.EditorFor(model => model.MAKH, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.MAKH, "", new { @class = "text-danger" }) Tên khách hàng mua @Html.EditorFor(model => model.TENKH, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.TENKH, "", new { @class = "text-danger" }) Địa @Html.EditorFor(model => model.DIACHI, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DIACHI, "", new { @class = "text-danger" }) Điện thoại @Html.EditorFor(model => model.DIENTHOAI, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DIENTHOAI, "", new { @class = "text-danger" }) 86 Thu nhập @Html.EditorFor(model => model.THUNHAP, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.THUNHAP, "", new { @class = "text-danger" }) } @Html.ActionLink("Back to List", "Index") @section Scripts { @Scripts.Render("~/bundles/jqueryval") } 2.8.Chức xóa: 2.8.1 Giao diện chức xóa: 2.8.2.Mã lệnh Controller chức xóa: public ActionResult Delete(String id) { KHACHHANGMUA khm = db.KHACHHANGMUAs.Find(id); db.KHACHHANGMUAs.Remove(khm); db.SaveChanges(); return RedirectToAction("Index"); } 87 2.9.Chức hiển thị chi tiết: 2.9.1.Giao diện chức hiển thị chi tiết: 2.9.2.Mã lệnh Controller chức hiển thị chi tiết: public ActionResult Details(String id) { var lstkhm = db.KHACHHANGMUAs.Select(p => p).Where(p => p.MAKH == id).FirstOrDefault(); return View(lstkhm); } 2.9.3.Mã lệnh Details Chức hiển thị chị tiết: @model TIEULUAN36.Models.KHACHHANGMUA @{ } ViewBag.Title = "Details"; Chi tiết Khách hàng mua Mã khách hàng mua @Html.DisplayFor(model => model.MAKH) Tên khách hàng mua 88 @Html.DisplayFor(model => model.TENKH) Địa @Html.DisplayFor(model => model.DIACHI) Điện thoại @Html.DisplayFor(model => model.DIENTHOAI) Thu nhập @Html.DisplayFor(model => model.THUNHAP)@Html.ActionLink("chỉnh sửa", "Edit", new { id = Model.MAKH }) | @Html.ActionLink("Back to List", "Index")
89 90 91 ... có hiệu vào thị trường chứng khốn Chính hoạt động góp thêm phần mang thị trường chứng khốn Việt Nam tiến triển.Do em muốn chọn đề tài ? ?Quản lý thị trường chứng khoán ” nhằm tạo trang wed người... nhịp Đầu tư vào thị trường chứng khoán trở nên trọng yếu so với người Để gia nhập vào thị trường chứng khoán, người cần phải có tri thức khẳng định thị trường chứng khốn Thị trường chứng khốn tiến... gia nhập ngày đơng người có đầy đủ tri thức thị trường chứng khoán Cho nên, tri thức người dân thị trường chứng khoán Việt Nam cần chun sâu Thị trường chứng khốn có hút vốn có Nó trọng yếu so với