NEWS

Monday, June 6, 2011

What is the difference between Session.Abandon() and Session.Clear()?


Session.Abandon() will end current session by firing Session_End and in the next
request, Session_Start will be fire.

Session.Clear( ) just clears the session data without killing it. With session.clear
variable is not removed from memory it just like giving value null to this session.

Session ID will remain same in both cases, as long as the browser is not closed.

No comments:

Post a Comment