In ASP.Net, “Session Mode” denotes where the ASP.Net application is going to store the user session information. This can be specified in the Web.Config file by the “SessionState” config element under the “System.Web” config Element.
There are 4 Modes are supported in ASP.Net. They are:
InProc : Denotes session stored in ASP.Net worker process. This is default.
SQL Server : Denotes that session stored in SQL Server DB.
State Server : Denotes that Session State stored in out of process using ASP.Net State Service.
Custom : Denotes you can store the session information in a customized data store.
Off : Denotes that Session state is disabled.
Session Modes in ASP.Net |
InProc : Denotes session stored in ASP.Net worker process. This is default.
SQL Server : Denotes that session stored in SQL Server DB.
State Server : Denotes that Session State stored in out of process using ASP.Net State Service.
Custom : Denotes you can store the session information in a customized data store.
Off : Denotes that Session state is disabled.
0 comments :