protected void ucConfirmDialog_Yes(object sender) { ucConfirmDialog.Hide(); string errMsg = string.Empty; Admins vcontroller = new Admins(); Entities.KhachHang vusers = new Entities.KhachHang(); vusers = vcontroller.getby_tk_khachhang(Convert.ToString(ucConfirmDialog.Key), ref errMsg); if (vusers.Trangthai == true) { vusers.Trangthai = false; } else { vusers.Trangthai = true; } int result = vcontroller.capnhap_tt_khachhang(vusers.Tendangnhap, vusers.Trangthai, ref errMsg); if (result > 0) { ucNotificationDialog.MessageContent = "cập nhập trạng thái thành công!"; ucNotificationDialog.MessageType = 1; ucNotificationDialog.RedirectUrl = "~/Admin/users.aspx"; ucNotificationDialog.Show(); } else { if (result == -1) { ucNotificationDialog.MessageContent = "Bản ghi không tồn tại!<br/>Vui lòng kiểm tra lại."; } else { ucNotificationDialog.MessageContent = "Hệ thống gặp sự cố!<br/>Vui lòng liên hệ @ để được hỗ trợ."; } ucNotificationDialog.MessageType = 0; ucNotificationDialog.Show(); } }