Why do we use session state?

ASP.NET session state enables you to store and retrieve values for a user as the user navigates ASP.NET pages in a Web application . HTTP is a stateless protocol. This means that a Web server treats each HTTP request for a page as an independent request.22 Eki 2014

Read more

What is session state mode?

The InProc Session State Mode stores session data in a memory object in the application worker process (aspnet_wp.exe) in the application domain . It is usually the fastest, but more session data means more memory is used on the web server, and that can affect performance.

Read more