Ejemplo n.º 1
0
        private void btnUpdate_Click_1(object sender, EventArgs e)
        {
            errorProvider1.SetError(txtPassNew, "");
            errorProvider1.SetError(txtConfirmPass, "");
            if (txtPassNew.Text.Length < 8 || !txtPassNew.Text.Any(char.IsDigit) || !txtPassNew.Text.Any(char.IsLower) || !txtPassNew.Text.Any(char.IsUpper))
            {
                errorProvider1.SetError(txtPassNew, "Mật khẩu mới tối thiểu 8 kí tự, gồm chữ số, " + "in thường, in hoa.");
                return;
            }
            if (txtPassNew.Text != txtConfirmPass.Text)
            {
                errorProvider1.SetError(txtConfirmPass, "Mật khẩu nhập lại không trùng!!!");
                return;
            }
            nhanvien f     = (nhanvien)this.MdiParent;
            int      count = XLBANG.Thuc_hien_lenh("Update NHANVIEN set Password ='******' where MaNV = '" + f.maNV + "'");

            if (count > 0)
            {
                MessageBox.Show("Cập nhật thành công");
            }
            else
            {
                MessageBox.Show("Mật khẩu không hợp lệ!!!");
            }
        }
Ejemplo n.º 2
0
 private void simpleButton1_Click(object sender, EventArgs e)
 {
     
         tblNhanVien = new XLNHANVIEN();
         var r = tblNhanVien.Select("Username='******' and Password = '******'");
         if (r.Count() > 0)
         {
             nhanvien f = (nhanvien)this.MdiParent;
             f.Text = "Quản lí Nhà Sách - Chào" + r[0]["TenNV"].ToString();
             f.maNV = r[0]["MaNV"].ToString();
             f.EnableControl((int)r[0]["MaLTK"]);
             this.Close();
         }
         else
             MessageBox.Show("Sai tên tài khoản và mật khẩu!!!");
     
 }