开发者

Session lifecycle question

开发者 https://www.devze.com 2023-03-04 09:30 出处:网络
I\'m a little confused about the life cycle of the session in ASP.NET, here is my test case. A user logs in, I save some info to a session variable (e.g. Session[开发者_高级运维\"bob\"]=\"bob\") then

I'm a little confused about the life cycle of the session in ASP.NET, here is my test case.

A user logs in, I save some info to a session variable (e.g. Session[开发者_高级运维"bob"]="bob") then I do an "IIS reset". The user is still logged in, but the session data is null (e.g Session["bob"].ToString() throws a NullReferenceException.

I expected the session data to still be around. Is there something I can do, other than log out the user? I expected the session data to be around as long as the user is still logged in.

Any good links so I grok what's going on, as well as any help with the actual issue is greatly appreciated. I tried to Google this, but wasn't able to frame the question in a way to get what I wanted.


The behavior you are seeing - where the Session contents do not survive an IIS reset event - is due to where the Session values are stored. By default these values are stored within the memory of the ASP.NET "Worker Process", which is the program which runs your ASP.NET web site.

When you perform an "IIS reset" you shut down the entire IIS server, including the ASP.NET Worker Process. This means that the contents of the Session are removed from memory. Your user still appears to be logged in because that is controlled by the cookie stored in their browser. If the cookie is still valid, the login is.

If you wish your Session state to survive an IIS reset (or anything else which causes the ASP.NET worker process to restart) you'll need to store your Session objects in another place. This is fully supported by ASP.NET by using different Session storage "Modes". Read about those in the MSDN article "Session-State Modes".

For a general overview of the Session, check out the "ASP.NET Session State Overview" article on MSDN.


yah its right but some time its happen then session no remove properly at that time

you have to check session like

If Session("username") = nothing then

Response.redirect("~/default.aspx")

End if
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号