ASP.NET:访问会话在Global.asax中的变量(ASP.NET :Access Sessi

2019-06-26 12:13发布

我有一个ASP.NET应用程序,并在Global.asax“应用程序错误事件,我打电话给跟踪的方法/日志error.I想在这里使用会话变量的内容。我用下面的代码

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);   
} 

我在这行代码得到一个错误,我在哪里访问会话variable.Visual工作室,告诉

“会议是在此背景下可用”

如何摆脱呢? 有什么想法吗?

提前致谢

Answer 1:

如果你不喜欢这样它应该工作:

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

因为这是我自己做的。

究竟你的意思是什么:Visual Studio是告诉说:“会议是在此背景下可用”? 你得到一个编译错误或运行时异常?

你可以尝试将更多的防守和测试,如果有实际上是当前HttpContext和会话:

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


Answer 2:

我认为应用程序了错误是特定整个应用程序和会话是特定的用户。 也许你可以抛出自己的异常,你保存从异常中的会话的信息。



Answer 3:

你可以试试这个:

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

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

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

但是如果异常被抛出加载Session对象之前,这将是空



文章来源: ASP.NET :Access Session variable in global.asax