views:

1185

answers:

2

In the Application_Error method in Global.asax I am trying to retrieve a value from session state.

I am able to access session state as long as I throw the exception. EG:

thow new Exception("Test exception");

However if it is an unhandled exception, i get the following error when trying to access session state: "Session state is not available in this context.".

Why the differences in behavior, is there a work around?

Thanks.

A: 

I think you are trying to access the session through HttpContext.Current.Session. I believe the difference in behavior is that in the unhanded exception handler, the request has gone into "Failsafe" mode and the page lifecycle (including loading and disposing the session) has finished.

Check out this page on the lifecycle for more info

Robert Wagner
+1  A: 

I hate ASP.NET sometimes...

So generating an error using:

Response.Redirect("thispagedoesnotexist.aspx", false);

The above line will redirect to Application_Error with session state not available

However

throw new Exception("test");

The above line will redirect to Application_Error with session state AVAILABLE

So instead of doing this all in Application_Error, in one spot, I will have to use try/catches through out my code to catch errors. Then gather data from session, log and email error details, then finally redirect to friendly error page. Lots of extra code..

Conclusion: Application_Error is worthless.

Aros