ASP.NET sessionAkshay Teotia14yAsked Mar 17, 2012, 12:35 AM1.8k.NETHi FriendsExplain the various modes of storing ASP.NET session.
Senthilkumar14y agoPosted Mar 17, 2012, 5:31 AMHi,Please go through MSDN.http://msdn.microsoft.com/en-us/library/ms178586.aspx
Satyapriya Nayak14y agoPosted Mar 17, 2012, 1:37 AMHi Akshay, In-Process state management: The In-Process type of Session state management stores the session in memory on the web server. In order to have a user always reconnect to the same web-server, a sticky server is needed. Out-of-Process state management: Out-of-Process Session state management stores data in an external data source. The external data source may be a SQL Server or a State Server service. Out-of-Process state management requires the objects in a session to be serializable..Thanks
SenthilkumarPosted Mar 17, 2012, 5:31 AM
Please go through MSDN.
http://msdn.microsoft.com/en-us/library/ms178586.aspx
Satyapriya NayakPosted Mar 17, 2012, 1:37 AM
Thanks