public static void NguoiDung_Xoa(string TenDangNhap) { DialogResult kq = MessageBox.Show("Bạn có chắc là muốn xóa tài khoản này không?", "Cảnh báo!!!", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1); if (kq == DialogResult.Yes) { using (SqlCommand cmd = new SqlCommand("SP_NGUOIDUNG_XOA") { CommandType = CommandType.StoredProcedure }) { cmd.Parameters.Add("@TENDN", SqlDbType.VarChar).Value = TenDangNhap; CDATABASE.ThucThiLenh(cmd); } } }
public void DOIMATKHAU(string tendangnhap, string matkhaucu, string matkhaumoi) { using (SqlCommand cmd = new SqlCommand("SP_DOIMATKHAU")) { cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add("@TENDANGNHAP", SqlDbType.NVarChar).Value = tendangnhap; cmd.Parameters.Add("@MATKHAUCU", SqlDbType.VarChar).Value = matkhaucu; cmd.Parameters.Add("@MATKHAUMOI", SqlDbType.VarChar).Value = matkhaumoi; try { CDATABASE.ThucThiLenh(cmd); MessageBox.Show("Đổi mật khẩu thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show("Lỗi!" + ex.Message, "Thông báo!", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }
public static void NguoiDung_Sua(string TenDangNhap, string MatKhau, int QuyenAdmin, int QuyenThem, int QuyenXoa, int QuyenSua) { try { using (SqlCommand cmd = new SqlCommand("SP_NGUOIDUNG_SUA") { CommandType = CommandType.StoredProcedure }) { cmd.Parameters.Add("@TENDN", SqlDbType.VarChar).Value = TenDangNhap; cmd.Parameters.Add("@MATKHAU", SqlDbType.VarChar).Value = MatKhau; cmd.Parameters.Add("@ADMIN", SqlDbType.Bit).Value = QuyenAdmin; cmd.Parameters.Add("@THEM", SqlDbType.Bit).Value = QuyenThem; cmd.Parameters.Add("@XOA", SqlDbType.Bit).Value = QuyenXoa; cmd.Parameters.Add("@SUA", SqlDbType.Bit).Value = QuyenSua; CDATABASE.ThucThiLenh(cmd); //MessageBox.Show("Sửa thành công", "Thông báo!", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch { MessageBox.Show("Sửa dữ liệu không thành công", "Thông báo!", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
public static DataTable LAYDSNGUOIDUNG() { string query = "SELECT TENDANGNHAP, MATKHAU, QUYENADMIN, QUYENTHEM, QUYENXOA, QUYENSUA FROM NGUOIDUNG"; return(CDATABASE.ExecuteBang(query)); }
private void FrmDangNhapHeThong_Load(object sender, EventArgs e) { CDATABASE.KetNoi(); txt_TenDangNhap.Text = "admin"; txt_MatKhau.Text = "*****@*****.**"; }