How Sessions Time Out....?
I wonder some times how statemanagement efficiently helps a developer to handle the user sessions. Session state management is one which should be handled with care, Other wise it can create various problems. We have to identify how are these sessions expire..?
When does a session begins..?
Ofcourse, When the user make a request to login to a site, one user session begins.
Then when does it ends..?
1) When the user logs out, automatically the session is cleared and all the session memory variables are freed.
(Here Session.Abandon() is called)
2) When the user is not responsing through the browser till the timeout period occurs, the session will be expired.
3) When user interacts to the same session through different browsers, some problems may occur. It is handled according to the different behaviours of browsers.
4) When the User closes the Browser, The Session timeout occurs.
These are the different ways through which a session expires.
Revision number 1, Thursday, February 17, 2011 7:27:11 PM by durga89
You must Login to comment.
|
Fri, Feb 25, 2011 11:46 PM
by shwetamber
|
Hi,
I see a website in which untill i don't request to Logout my session will maintain. I was close the browser and delete all cookies but when i open the website I saw that i am already logged in. Can you explain how it will happens ?
|
|
Wed, Mar 9, 2011 5:25 AM
by Zubair Alam
|
sorry, but i think your 4th pt is incorrect 4) When the User closes the Browser, The Session timeout occurs.
|
|
Thu, Mar 10, 2011 3:36 AM
by durga89
|
ya, you thought in a right way...When the user closes the browser, it actually expires, not timeouts.
|
|
Mon, Mar 14, 2011 2:45 AM
by idreesbari
|
then in what situation the Session.Abandon() should be used and Session.clear() and how they behave?
|
|
Sun, May 1, 2011 11:57 PM
by durga89
|
when the user is logging out, the developer should write the Session.Abandon() method for removing the particular Session. When you use Session.Clear(), it is clearing all the session variables, not deleting the session...
|