@Html.ActionLink("Sửa", "Edit", new { id = Model.ID }) | @Html.ActionLink("Trở trang chủ", "Index")
a:hover { opacity: 0.5; text-decoration: none; } dl-horizontal dt { float: left; width: 160px; clear: left; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 7px; } dl-horizontal dd { margin-left: 180px; padding: 7px; } 70 h Đây phần xử lý liệu trang hiển thị chi tiết thông tin luật // Hiển thị luật public ActionResult Details(string id = "") { LuatList Luat = new LuatList(); List obj = Luat.GetLuat(id); return View(obj.FirstOrDefault()); } public List GetLuat(string ID) { string sql; if (string.IsNullOrEmpty(ID)) { sql = "Select * From Luat"; } else { sql = "Select * From Luat Where Id = " + ID; } List strList = new List(); SqlConnection = db.GetConnection(); SqlDataAdapter cmd = new SqlDataAdapter(sql, con); DataTable dt = new DataTable(); // Mở kết nối con.Open(); cmd.Fill(dt); // Đóng kết nối cmd.Dispose(); con.Close(); QLLuat strLuat; for(int i =0; i