private void btDangNhap_Click(object sender, EventArgs e) { try { TaiKhoan tk = cnb.ViewTaiKhoan("SELECT *FROM TaiKhoan WHERE TenTaiKhoan='" + txtTK.Text + "'")[0]; if (txtMK.Text.Equals(tk.MatKhau)) { QLCN = new Form1(); QLCN.Show(); } } catch (Exception) { MessageBox.Show("Username hoặc password lỗi"); } }
public void KiemTraDangNhap() { try { if (!string.IsNullOrEmpty(txtTK.Text)) { if (!string.IsNullOrEmpty(txtMK.Text)) { TaiKhoan tk = cnb.ViewTaiKhoan("SELECT *FROM TaiKhoan WHERE TenTaiKhoan='" + txtTK.Text + "'")[0]; if (txtMK.Text.Equals(tk.MatKhau)) { label4.Text = "Đăng nhập thành công"; QLCN = new Form1(); QLCN.Show(); this.Hide(); } else { label4.Text = "Sai Mật Khẩu"; txtMK.Clear(); txtMK.Focus(); } } else { label4.Text = "Lỗi!! Vui lòng nhập mật khẩu"; txtMK.Focus(); } } else { label4.Text = " Lỗi!! Vui lòng nhập tài khoản của bạn"; txtTK.Focus(); txtMK.Clear(); } } catch (Exception) { label4.Text = "Lỗi!! Sai tài khoản hoặc mật khẩu"; txtTK.Clear(); txtMK.Clear(); txtTK.Focus(); } }