// GET: Login/Delete/5
        public ActionResult Delete(int id)
        {
            Login login = new BL.Login();

            login = (Login)Session["user"];
            return(View(login));
        }
 private void txtuserid_Validated(object sender, EventArgs e)
 {
     if (state == "add")
     {
         BL.Login  obj = new BL.Login();
         DataTable dt  = new DataTable();
         dt = obj.Verifyuser_id(txtuserid.Text);
         if (dt.Rows.Count > 0)
         {
             MessageBox.Show("This is name Already Exist", "Alarm", MessageBoxButtons.OK, MessageBoxIcon.Warning);
             txtuserid.Focus();
             txtuserid.SelectionStart  = 0;
             txtuserid.SelectionLength = txtuserid.TextLength;
             return;
         }
     }
 }
Exemplo n.º 3
0
        void permision()
        {
            BL.Login  l     = new BL.Login();
            DataTable dperm = new DataTable();

            dperm.Clear();
            dperm = l.Select_UserPermession(Program.Id_USer);
            if (dperm.Rows.Count >= 1)
            {
                if (Convert.ToInt32(dperm.Rows[0][21]) == 0)
                {
                    delete.Visible = false;
                }
                else if (Convert.ToInt32(dperm.Rows[0][21]) == 1)
                {
                    delete.Visible = true;
                }
            }
        }
        // GET: Login/Create
        public ActionResult Create()
        {
            Login login = new BL.Login();

            return(View(login));
        }
        private void btnadduser_Click(object sender, EventArgs e)
        {
            if (btnadduser.Text == "Save User" || btnadduser.Text == "ADD NEW USER")
            {
                if (txtuserid.Text != string.Empty && txtusername.Text != string.Empty && txtuserpass.Text != string.Empty && comboxusertype.Text != string.Empty)
                {
                    if (txtuserpass.Text == txtuserpassconfirm.Text)
                    {
                        if (!Regex.IsMatch(txtuserid.Text, "^[a-zA-Z ]+$"))
                        {
                            MessageBox.Show("User ID is wrong", "Adding", MessageBoxButtons.OK, MessageBoxIcon.Error);
                            return;
                        }

                        else if (!Regex.IsMatch(txtusername.Text, "^[a-zA-Z ]+$"))
                        {
                            MessageBox.Show("Name is wrong", "Adding", MessageBoxButtons.OK, MessageBoxIcon.Error);
                            return;
                        }

                        BL.Login useradd = new BL.Login();
                        useradd.ADD_User(txtuserid.Text, txtuserpass.Text, comboxusertype.Text, txtusername.Text);
                        MessageBox.Show("User Added successfully", "Add Another one", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        txtuserid.Clear();
                        txtuserpass.Clear();
                        txtuserpassconfirm.Clear();
                        txtusername.Clear();
                        txtuserid.Focus();
                    }
                    else
                    {
                        MessageBox.Show("Passwords do not match");
                        return;
                    }
                }
                else
                {
                    MessageBox.Show("Please fill all data");
                    return;
                }
            }
            else if (btnadduser.Text == "Modify User")
            {
                if (txtuserid.Text != string.Empty && txtusername.Text != string.Empty && txtuserpass.Text != string.Empty && comboxusertype.Text != string.Empty)
                {
                    if (txtuserpass.Text == txtuserpassconfirm.Text)
                    {
                        if (!Regex.IsMatch(txtuserid.Text, "^[a-zA-Z ]+$"))
                        {
                            MessageBox.Show("User ID is wrong", "Adding", MessageBoxButtons.OK, MessageBoxIcon.Error);
                            return;
                        }

                        else if (!Regex.IsMatch(txtusername.Text, "^[a-zA-Z ]+$"))
                        {
                            MessageBox.Show("Name is wrong", "Adding", MessageBoxButtons.OK, MessageBoxIcon.Error);
                            return;
                        }
                        BL.Login useradd = new BL.Login();
                        useradd.Edit_user(txtuserid.Text, txtuserpass.Text, comboxusertype.Text, txtusername.Text);
                        MessageBox.Show("User Edit Successfully", "Edit User", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        txtuserid.Clear();
                        txtuserpass.Clear();
                        txtuserpassconfirm.Clear();
                        txtusername.Clear();
                        txtuserid.Focus();
                    }
                    else
                    {
                        MessageBox.Show("Passwords do not match");
                        return;
                    }
                }

                else
                {
                    MessageBox.Show("Please fill all data");
                    return;
                }
            }
        }