Different types of Session state management options available with ASP.NET

Posted by Aamir Hasan on ASP.net Weblogs See other posts from ASP.net Weblogs or by Aamir Hasan
Published on Mon, 22 Mar 2010 07:49:00 GMT Indexed on 2010/03/22 8:01 UTC
Read the original article Hit count: 532

Filed under:
|

ASP.NET provides In-Process and Out-of-Process state management.
In-Process stores the session in memory on the web server.
This requires the a "sticky-server" (or no load-balancing) so that the user is always reconnected to the same web server.
Out-of-Process Session state management stores data in an external data source.
The external data source may be either a SQL Server or a State Server service.
Out-of-Process state management requires that all objects stored in session are serializable.

Link
http://msdn.microsoft.com/en-us/library/ms178586%28VS.80%29.aspx

© ASP.net Weblogs or respective owner

Related posts about ASP.NET

Related posts about session