In-Process Session State: This is the default session state management mode in ASP.NET, where session data is stored in memory on the same web server.
State Server Session State: This mode stores session data in a separate process called the ASP.NET State Service, which runs outside the web server process.
SQL Server Session State: This mode stores session data in a SQL Server database, which provides the highest level of reliability and scalability.
Session state is a mechanism that enables you to store data on server side for multiple requests. It allows you to persist data between pages.
Tags:
ASP.Net Web Form