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 sugg
If you don't save anything into the session, the session_end will not fire.
If you're saving data in the session in the first request, and calling abandon in the same request the session_end will also not fired.