ASP.NET:global.asax中的Access Session变量

时间:2009-07-22 10:57:55

标签: asp.net session global-asax

我有一个ASP.NET应用程序,在Global.asax的应用程序错误事件中,我正在调用跟踪/记录错误的方法。我想在这里使用会话变量内容。我使用下面的代码

void Application_Error(object sender, EventArgs e)
{
     //get reference to the source of the exception chain
     Exception ex = Server.GetLastError().GetBaseException();

     //log the details of the exception and page state to the
     //Windows 2000 Event Log
     GUI.MailClass objMail = new GUI.MailClass();
     string strError = "MESSAGE: " + ex.Message + "<br><br><br>" + "SOURCE: " + ex.Source + "<br>FORM: " + Request.Form.ToString() + "<br>QUERYSTRING: " +    Request.QueryString.ToString() + "<br>TARGETSITE: " + ex.TargetSite + "<br>STACKTRACE: " + ex.StackTrace;
     if (System.Web.HttpContext.Current.Session["trCustomerEmail"] != null)
     {
         strError = "Customer Email : " + Session["trCustomerEmail"].ToString() +"<br />"+ strError;
     }

     //Call a method to send the error details as an Email
     objMail.sendMail("test@gmail.com", "myid@gmail.com", "Error in " + Request.Form.ToString(), strError, 2);   
} 

我在访问会话变量的代码行中出现错误.Visual Studio告诉

  

“会话在此上下文中不可用”

如何摆脱这个?有什么想法吗?

提前致谢

3 个答案:

答案 0 :(得分:11)

如果你这样做,它应该有效:

strError = System.Web.HttpContext.Current.Session["trCustomerEmail"]

因为这就是我自己做的事。

你究竟是什么意思:Visual Studio告诉“会话在这种情况下不可用”?您是否收到编译器错误或运行时异常?

如果确实存在当前的HttpContext和Session,您可以尝试更具防御性并进行测试:

if (HttpContext.Current != null &&
    HttpContext.Current.Session != null) {
  strError = HttpContext.Current.Session["trCustomerEmail"]
}

答案 1 :(得分:3)

我认为应用程序错误特定于整个应用程序,并且会话特定于用户。也许您可以抛出自己的异常,在异常中保存会话中的信息。

答案 2 :(得分:1)

你可以试试这个:

HttpContext context = ((HttpApplication)sender).Context;

然后你必须使用是这样的:

context.Request.QueryString.ToString()
context.Session["key"] = "fasfaasf";

但是如果在加载Session对象之前抛出异常,则它将为null