コード例 #1
0
        protected void btnThem_Click(object sender, EventArgs e)
        {
            string userName = txtEmail.Text;
            string passWord = txtPass.Text;
            int    id       = userBUS.CheckToLogin(userName, passWord);

            if (id >= 1)
            {
                Session["id"] = id;
                if (userBUS.IsAdmin(id))
                {
                    BUS.CGloble.Alert(this, "Đăng nhập thành công!!!");
                    Response.Redirect("~/Admin/admin.aspx");
                }
                else
                {
                    BUS.CGloble.Alert(this, "Bạn không có quyền Admin!");
                    Response.Redirect("~/HomeWeb/Home.aspx");
                }
            }
            else
            {
                BUS.CGloble.Alert(this, "Sai thông tin đăng nhập!");
            }
        }