首页上一页 1 下一页尾页 1 条记录 1/1页
如何判断Session不存在?
发表在ASP.NET图书答疑
2017-09-01
《ASP.NET从入门到精通-(第4版)》第2章 ASP.NET的内置对象
是否精华
是
否
版块置顶:
是
否
protected void Page_Load(object sender, EventArgs e)
{
if (Session["UserID"].ToString()==null)
{
Response.Write("<script>alert('您无权查看该页,请登录!')</script>");
Response.Redirect("~/Default.aspx");
}
else
{
string UserID = Session["UserID"].ToString();
}
}
如上代码判断不了,系统报错:System.NullReferenceException:“未将对象引用设置到对象的实例。”
附问:怎么判断Session已过期?