userbll.cs:public static Boolean islogin(usermodel u)
    {
        string sql = "select * from usersys where USERID=@userId and PASSWORD=@password";
        object obj =sqls.ExecuteScalar(sql,
            new SqlParameter("@userid",u.Userid),
            new SqlParameter ("@password",u.Password));
        if (Convert.ToString(obj) == "1")
        {
            return true;
        }
        else
        {
            return false;
        }
        
    }login.axsp:            usermodel md = new usermodel();
            md.Userid = TextBox1.Text;
            md.Password = TextBox2.Text;
            Boolean b = userbll.islogin(md);
            if (b)
            {
                Session["USERID"] = int.Parse(TextBox1.Text);
                Response.Redirect("bookmanage.aspx");
            }
            else
            {
                Response.Write("ID或密码不对");
            }这问题是只有ID是1的可以登录  其他都不行  怎么办呢 小弟初学者  纠结ing。