我是照着例子写的代码,为什么例子可以正常运行,而我写的就出现了这样的错误:
我是照着例子写的代码,为什么例子可以正常运行,而我写的就出现了这样的错误:“/login”应用程序中的服务器错误。----------------------------...
我是照着例子写的代码,为什么例子可以正常运行,而我写的就出现了这样的错误:
“/login”应用程序中的服务器错误。
--------------------------------------------------------------------------------
未将对象引用设置到对象的实例。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.NullReferenceException: 未将对象引用设置到对象的实例。
以下是代码:
public partial class login : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string userName = Request.Form["usrName"].ToString();
string userPwd = Request.Form.Get("userPwd").ToString();
SqlConnection con = new SqlConnection("server=.;database=login;uid=sa;pwd=;");
con.Open();
SqlCommand cmd = new SqlCommand("select cont(*) from login where userName='"+userName+"' and userPwd='"+userPwd+"'",con);
int count = Convert.ToInt32(cmd.ExecuteScalar());
if (count > 0)
{
Response.Redirect("main.aspx");
}
else
{
Response.Redirect("fail.html");
}
}
} 展开
“/login”应用程序中的服务器错误。
--------------------------------------------------------------------------------
未将对象引用设置到对象的实例。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.NullReferenceException: 未将对象引用设置到对象的实例。
以下是代码:
public partial class login : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string userName = Request.Form["usrName"].ToString();
string userPwd = Request.Form.Get("userPwd").ToString();
SqlConnection con = new SqlConnection("server=.;database=login;uid=sa;pwd=;");
con.Open();
SqlCommand cmd = new SqlCommand("select cont(*) from login where userName='"+userName+"' and userPwd='"+userPwd+"'",con);
int count = Convert.ToInt32(cmd.ExecuteScalar());
if (count > 0)
{
Response.Redirect("main.aspx");
}
else
{
Response.Redirect("fail.html");
}
}
} 展开
展开全部
if(Request["userName"]!=null||Request["userPwd"]!=null)
{
string userName = Request.Form["usrName"].ToString();
string userPwd = Request.Form.Get("userPwd").ToString();
}
else
{
Response.Redirect("<script>alert('参数不正确!');history.Back()</script>");
}
{
string userName = Request.Form["usrName"].ToString();
string userPwd = Request.Form.Get("userPwd").ToString();
}
else
{
Response.Redirect("<script>alert('参数不正确!');history.Back()</script>");
}
展开全部
string userName = Request.Form["usrName"].ToString();
string userPwd = Request.Form.Get("userPwd").ToString();
看前一页有没传usrName,userPwd这2变量啊?!
string userPwd = Request.Form.Get("userPwd").ToString();
看前一页有没传usrName,userPwd这2变量啊?!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
抢分来了...........
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
加判断
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询