Session_End

  • Thread starter Thread starter Joseph D. DeJohn
  • Start date Start date
J

Joseph D. DeJohn

I'd like to write to a database at the end of a user's session, but for
some reason the Session_End does not seem to fire. Any ideas?
 
The session_end event is normally called after the server has not gotten any
page requests from the user for 20 minutes (default, configurable in your
web.config).
The Session_End won't fire in a few circumstances, such as when you
end the session prematurely (i.e. pressing the stop button in VS.NET) or if
you aren't using the standard InProc sessions.

Here's more details for you:
http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&PostID=7504
 
Back
Top