8

我有一个 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 告诉我们

会话在此上下文中不可用

我怎样才能摆脱这个?

4

3 回答 3

12

如果您这样做,它应该可以工作:

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

因为那是我自己做的。

您到底是什么意思:Visual Studio 告诉“会话在此上下文中不可用”?您是否收到编译器错误或运行时异常?

您可以尝试更具防御性并测试是否确实存在当前的 HttpContext 和 Session:

if (HttpContext.Current != null &&
    HttpContext.Current.Session != null) {
  strError = HttpContext.Current.Session["trCustomerEmail"]
}
于 2009-07-22T11:28:33.440 回答
3

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

于 2009-07-22T11:10:13.120 回答
1

你可以试试这个:

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

那么你必须使用是这样的:

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

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

于 2009-07-22T12:02:40.580 回答