=> InProc Mode :-
Which stores session state in memory on the web server.
State Server Mode :-
Which store session state in separate process called the asp.Net state service. This ensure that
session state is preserved if the web application is restarted and also makes session state available to multiple web server in a web farm.
SQL Server Mode :-
Store session state in sql server database. This ensures that session state is preserved if the web application is restarted and also makes session state available to multiple web servers in a web farm.
Custom Mode :-
Which enables we to specify a custom storage provider.
Off Mode :-
Which disables session state.
0 comments:
Post a Comment