I'm trying to do some "housecleaning" with my application. When the Session_End event fires, I'm wondering, is the Session still there? Does the Session disappear AFTER the Session_End event completes, or is it gone beforehand? In other words, can my Session_End event call subroutines that rely on the Session variables? I'm wanting to log the fact that a particular session ended. Can I do this in global.asax?
View Complete Post