session_end event

  • Thread starter Thread starter Mark Field
  • Start date Start date
M

Mark Field

Assuming that IIS is not restared, and that the web server is not restarted,
should the "session_end" event in the global file ALWAYS fire or will there
be times when it will not fire?

protected void Session_End(Object sender, EventArgs e)

{

}


Thanks in advance.

Mark
 
There is no session so the session end event cannot fire. The implication is
that for session end event to fire, there must be a current session. What
problems are you experiencing?
 
Another note is that Session_End is fired only in InProc (in-process) mode.
If mode is StateServer or SQLServer, it won't be fired.
 
Back
Top