ASP.NET Session_End event not firing

GetFalslarl

New Member
I'm trying to get a database transaction to execute when an ASP.NET session ends (in simple WebForms app on Windows 2008 Server). I realize that many respondents will suggest not to rely on the Session_End event (as I've read in a hundred forum posts on this topic yielded by a Google search). Please humor me.I've done these things:1) Enabled session state in web.config: \[code\]<sessionState mode="InProc" cookieless="false" timeout="1" />\[/code\]2) Confirmed that the Session_End event does NOT fire when I call Session.Abandon() OR when the session times out.3) Confirmed that the session IS timing out after 1 minute (as configured above).4) Confirmed that I'm not attempting to access any Request or Response or Server objects (which I understand would silently error out). Please help!
 
Back
Top