What are the different Session state management options available in ASP.NET?

Technology CommunityCategory: ASP.NETWhat are the different Session state management options available in ASP.NET?
VietMX Staff asked 3 years ago
  • In-Process stores the session in memory on the web server.
  • Out-of-Process Session state management stores data in an external server. The external server may be either a SQL Server or a State Server. All objects stored in session are required to be serializable for Out-of-Process state management.