private void btnThayDoi_Click(object sender, EventArgs e) { MD5 mahoa = new MD5(); string tenDangNhap = nguoiDungDTO.MaNguoiDung; string matKhau = mahoa.md5(txtMatKhauCu.Text.Trim()); NguoiDungBUS nguoiDungBUS = new NguoiDungBUS(); bool ketQua = nguoiDungBUS.KiemTraDangNhap(tenDangNhap, matKhau); if(ketQua == false) { MessageBox.Show("Mật khẩu cũ không chính xác", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Hand); return; } else { if (this.txtMatKhauMoi.Text.Length < 6 && this.txtMatKhauMoi.Text.Length > 0) { MessageBox.Show("Mật khẩu có ít nhất 6 ký tự", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Hand); return; } else if (this.txtMatKhauMoi.Text != this.txtMatKhauNhapLai.Text && this.txtMatKhauMoi.Text.Length > 0) { MessageBox.Show("Mật khẩu mới nhập lại không trùng khớp", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Hand); return; } else { if (this.txtDiaChi.Text.Length == 0 || this.txtSoDienThoai.Text.Length ==0) { MessageBox.Show("Điện thoại và địa chỉ không được bỏ trống", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Hand); return; } else { try { nguoiDungDTO.DiaChi = this.txtDiaChi.Text; nguoiDungDTO.DienThoai = this.txtSoDienThoai.Text; if (this.txtMatKhauMoi.Text.Length > 0) nguoiDungDTO.MatKhau = mahoa.md5(txtMatKhauMoi.Text.Trim()); nguoiDungBUS.Sua(nguoiDungDTO); this.Close(); } catch(Exception ex) { MessageBox.Show(ex.ToString()); } } } } }
private void btnDangNhap_Click(object sender, EventArgs e) { MD5 mahoa = new MD5(); string tenDangNhap = tboxTenDangNhap.Text.Trim(); string matKhau = mahoa.md5(tboxMatKhau.Text.Trim()); NguoiDungBUS itemBUS = new NguoiDungBUS(); bool ketQua = itemBUS.KiemTraDangNhap(tenDangNhap, matKhau); if(ketQua == false) { MessageBox.Show("Đăng nhập không thành công! Bạn bị một trong các lỗi sau:\n - Sai tên đăng nhập hoặc mật khẩu.\n - Tài khoản của bạn đã hết hạn sử dụng hệ thống.", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Hand); return; } else { MessageBox.Show("Đăng nhập thành công", "Thành công", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); LoginEvent(tenDangNhap); this.Close(); } }