I am storing some web site settings for my ASP.NET website in the application state. I have also initialized the state in the Application_Start()
method. Specific users can change these settings, but after a period of time, the settings are reverting back to the values with which they were initialized in the Application_Start()
method, even though the server is constantly running.
Any idea why this is happening? Does the application get shut down if it does not receive any requests for a specific period of time?
Thanks in advance.