You configure where session data is stored in web.config
with the sessionState element. If set to InProc
, it will be stored in memory during the w3wp.exe
process, which corresponds to your App Pool application. You can also store it in an instance of SQL Server.
If this item is not listed in your configuration file, check the web.config
machine level for your target version / architecture.
source share