Explain the various modes of storing ASP.NET session.
2974
23-May-2011
Anonymous User
23-May-2011Types of sessions:
i. State server: 15% slower than InProc. Session is serialized and stored in aspnet_state.exe process. Stateserver sessions can be stored on a separate machine too.
ii. SQL Server: 25% slower than InProc. Used when data is to be serialized and stored in SQL Server database.