Session State in ASP.Net
ASP.Net supports three different providers for Session State... They are:
InProc - Session values are kept live in the memory of ASP.Net worker process
StateServer - Session values are serialized to store in the memory of a seperate proces i.e. aspnet_state.exe
SQLServer - Session values are stored on SQL Server...
You can read more about operational information and performance of session variables at
http://vishaljoshi.blogspot.com/2003_10_01_vishaljoshi_archive.html
No comments:
Post a Comment