示例#1
0
文件: frmlogin.cs 项目: viethuy20/git
        private void btnDangNhap_Click(object sender, EventArgs e)
        {
            NguoiDungDTO nd = new NguoiDungDTO();

            nd.TenNguoiDung = txtTaiKhoan.Text;
            nd.MatKhau      = txtMatKhau.Text;
            nd.PhanQuyen    = cmbphanquyen.Text;
            bool isLogin = NguoiDungDAO.KiemTraNguoiDung(nd);

            if (isLogin == true)
            {
                this.Hide();
                frmmain f1 = new frmmain();
                f1.ShowDialog();
                this.Close();
            }
            else
            {
                MessageBox.Show("Bạn đã nhập sai tên người dùng, mật khẩu hoặc quyền đăng nhập!", "Cảnh báo");
                txtTaiKhoan.Text = "";
                txtMatKhau.Text  = "";
            }
        }