What are the various Session modes in ASP.NET?
Ask by Manish Kumar
Updated 19 Sep 2020
In-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.