|
What is the difference between Session.Abandon() and Session.Clear()?
|
|
The major practical difference is that if you call Session.Abandon(), Session_End will be fired (for InProc mode), and in the next request, Session_Start will be fired. Session.Clear( ) just clears the session data without killing it.
|
|
|
|
|
|
|
|