我的网站用户登录了,在 Session["username"]="123" ,现在网站有5个页面,我要在
myhandler中的 ProcessRequest 方法中判断 Session["username"] 是否不为null,如果为null跳到 login.aspx 页面去,其他的不作处理,
if (context.Request.Url.ToString().IndexOf("Login.aspx") < 0)
{
if (context.Session["USERNAME"] == null || context.Session["STAFFNAME"] == null)
{
context.Response.Redirect("~/Login.aspx?msg=您还没有登录!");
}
}
session 一直都为null ,请问应该怎样处理?