0

在我的 asp.net Web 应用程序中,我想通过使用 Cache.So,在我的 Global.asax.as 页面中,防止多个用户从不同机器或同一台电脑上的相同用户名登录,

我把这条线...

protected void Application_PreRequestHandlerExecute(Object sender, EventArgs e)
   {
     if (Session["user"] != null) // e.g. this is after an initial logon
     {
        string sKey = (string)Session["user"];
        string sUser = (string)HttpContext.Current.Cache[sKey];
     }
   }

并在我的页面登录提交按钮单击,

string userName=uName.Text;
string passWord=pwd.Text;

string sKey = uName.Text;
string sUser = Convert.ToString(Cache[sKey]);
if (sUser == null || sUser == String.Empty)
           {
               TimeSpan SessTimeOut = new TimeSpan(0, 0, HttpContext.Current.Session.Timeout, 0, 0);
               HttpContext.Current.Cache.Insert(sKey, sKey, null, DateTime.MaxValue, SessTimeOut, System.Web.Caching.CacheItemPriority.NotRemovable, null);
               Session["user"] = TextBox1.Text.Trim();

               if (userName.Equals(db_userName) && passWord.Equals(db_password))
               {
                   Response.Write("Welcome " + userName);
               }
               else
               {
                   Response.Write("Invalid Login");
               }
           }
           else
           {
               Response.Write("<Marquee><h1><font color=red>ILLEGAL LOGIN ATTEMPT!!!</font></h1></marquee>");
               return;
           }

但是当运行我的应用程序时,它正在引发 Session state is not available in this context error message on Application_PreRequestHandlerExecute 事件...

我不知道这里有什么问题......所以,请指导我摆脱这个问题......

或者告诉我另一种好方法而不是这个......

4

3 回答 3

1

会话状态在初始请求期间不可用,并且在后续请求中可能为空。检查会话状态对象上的空值,而不仅仅是键/值。

if(HttpContext.Current.Session!=null){
//Proceed with xyz
}

旁注,您在此处使用 Response.Write ......虽然不是无效的,但是非典型的。我建议重定向到区域。

于 2012-11-06T06:40:38.953 回答
0

采用HTTPContext.Current.Session

于 2012-11-06T06:43:54.910 回答
0

使用此事件处理程序

 void Application_AcquireRequestState(object sender, EventArgs e)
   {
       if(HttpContext.Current.Session!=null)
          {
              // Place your Code here 
          }
   }
于 2012-11-06T06:52:24.350 回答