在Globle.asax文件中的Session_End事件中访问会话对象

时间:2016-01-25 09:11:44

标签: asp.net

我想在globle.asax文件的Session_End事件中访问会话变量。但是HtppContext.Current返回null。请以任何其他方式提出建议。

protected void Session_End(object sender, EventArgs e)
        {
           if (HttpContext.Current != null)
            {
                HttpContext ht = HttpContext.Current;

                string username = ht.Session["UserName"].ToString();
            }
        }

1 个答案:

答案 0 :(得分:1)

昨天我遇到了同样的问题,我只是使用:

string username = Session["UserName"].ToString();