I have a question regarding the application state in asp.net. As i know, data stored in application state is not permanent, data lost when the application is restarted/stopped. So, what does the ‘application is restarted/stopped’ mean?
2nd Question:
If there are few data store in the application state, let’s say 3-4 data, will it affect the performance of the page/server if i keep reading the data in application state every 1 second?
It’s very important to know what can cause an application restart in the web application. If we do not stop this application restart process it can cause great problem, as all the user will start loosing their session in the middle of nothing.
Here is a list of events when the Asp.net application restarts in Asp.Net 2.0