SessionID

  • Thread starter Thread starter Alex Smotritsky
  • Start date Start date
A

Alex Smotritsky

With cookie based InProc sessions Session.SessionID gets changed after
browser restarts as expected. Session.Abandon() and the session timing
out however results in no change in the value of Session.SessionID. Does
anyone know of a way to make asp.net provide a new Session.SessionID
without a browser restart?
 
Remarks
Once Abandon is called, the current session is no longer valid and a new
session can be started. Abandon causes the End event to be raised (a new
Start event is raised on the next request). The End event is supported only
when Mode is InProc.
 
Back
Top