ASP.NET: zmienna sesji dostępu w global.asax

Mam aplikację ASP.NET iw zdarzeniu błędu aplikacji Global.asax, wywoływam metodę śledzenia / rejestrowania błędu. Chcę użyć tutaj zawartości zmiennej sesji. Użyłem poniższego kodu

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("[email protected]", "[email protected]", "Error in " + Request.Form.ToString(), strError, 2);   
} 

W wierszu kodu pojawia się błąd, do którego uzyskuję dostęp do zmiennej session.Visual Studio to mówi

„Sesja nie jest dostępna w tym kontekście”

Jak się tego pozbyć? jakieś pomysły?

Z góry dziękuję

questionAnswers(3)

yourAnswerToTheQuestion