跪求 无法将类型“object”隐式转换为“bool”。存在一个显式转换(是否缺少强制转换?)
usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Web;usingSystem.We...
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Session["username"] = user.Text;
Session["password"] = pass.Text;
if (Session["username"].ToString() == "xx" && Session["Password"].ToString() == "980344")
{
Page.Response.Redirect("zhuye.aspx");
}
else
Label1.Text = "用户名或密码出错!请重新输入!密码不能为空!";
}
protected void Button2_Click(object sender, EventArgs e)
{
if (Session["username==null"]) 显示的是这里的问题
{
TD2.Visible = false;
}
else
{
TD1.Visible = false;
}
Label2.Text = Session["username"].ToString();
}
protected void Button3_Click(object sender, EventArgs e)
{
Session["username"] = user.Text;
Session["password"] = pass.Text;
Page.Response.Redirect("zhuce.aspx");
}
protected void Button1_Click1(object sender, EventArgs e)
{
}
}
返回后是这个样子
无法将类型“object”隐式转换为“bool”。存在一个显式转换(是否缺少强制转换?)
一楼的不正确 按一楼的改法会出现
类型“TextBox”的控件“user”必须放在具有 runat=server 的窗体标记内。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
这种错误 展开
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Session["username"] = user.Text;
Session["password"] = pass.Text;
if (Session["username"].ToString() == "xx" && Session["Password"].ToString() == "980344")
{
Page.Response.Redirect("zhuye.aspx");
}
else
Label1.Text = "用户名或密码出错!请重新输入!密码不能为空!";
}
protected void Button2_Click(object sender, EventArgs e)
{
if (Session["username==null"]) 显示的是这里的问题
{
TD2.Visible = false;
}
else
{
TD1.Visible = false;
}
Label2.Text = Session["username"].ToString();
}
protected void Button3_Click(object sender, EventArgs e)
{
Session["username"] = user.Text;
Session["password"] = pass.Text;
Page.Response.Redirect("zhuce.aspx");
}
protected void Button1_Click1(object sender, EventArgs e)
{
}
}
返回后是这个样子
无法将类型“object”隐式转换为“bool”。存在一个显式转换(是否缺少强制转换?)
一楼的不正确 按一楼的改法会出现
类型“TextBox”的控件“user”必须放在具有 runat=server 的窗体标记内。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
这种错误 展开
展开全部
楼上正解! if (Session["username==null"])
这样是获取Session里键值为"username==null"的值,你Session根本没有这个值,这样获得的会是null,然后你用if判断"null",if是要判断bool类型的,你传进去一个Object的null当然会报你上面的错误了
这样是获取Session里键值为"username==null"的值,你Session根本没有这个值,这样获得的会是null,然后你用if判断"null",if是要判断bool类型的,你传进去一个Object的null当然会报你上面的错误了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if (Session["username"]==null) 显示的是这里的问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询