示例#1
0
 private void btnDangNhap_Click(object sender, EventArgs e)
 {
     if (dn.DangNhap(txtTaiKhoan.Text, MaHoaChuoi.MaHoa(txtMatKhau.Text, txtMatKhau.Text)) == true)
     //if (dn.DangNhap(txtTaiKhoan.Text,MaHoa.md5(txtMatKhau.Text)) == true)
     {
         frmMenu f = new frmMenu();
         f.ShowDialog();
     }
     else
     {
         MessageBox.Show("Tài khoản hoặc mật khẩu không đúng !");
     }
 }
 private void btnThemTaiKhoan_Click(object sender, EventArgs e)
 {
     if (txtTaiKhoan.Text == "" || txtMatKhau.Text == "")
     {
         MessageBox.Show("Vui lòng nhập thông tin đăng ký !");
     }
     else
     {
         Boolean kt = dk.Them(txtTaiKhoan.Text, MaHoaChuoi.MaHoa(txtMatKhau.Text, txtMatKhau.Text), cbQuyen.Checked);
         //Boolean kt = dk.Them(txtTaiKhoan.Text, MaHoa.md5(txtMatKhau.Text), cbQuyen.Checked);
         if (kt)
         {
             MessageBox.Show("Thêm tài khoản thành công");
         }
         else
         {
             MessageBox.Show("Thêm tài khoản thất bại");
         }
     }
 }