What are the various Session modes in ASP.NET?
1894
17-Jun-2017
Manish Kumar
17-Jun-2017In-proc:
In-proc Session data is stored in the same machine as that of the server. When the server restarts session data is lost. In this Session data is overhead on the server.
State server:
In the State server Session data is stored in a separate machine.
SQL Server:
In the Sql Server Session data is stored in a SQL Server database and kept centrally.