I can store Session State in "InProc" or State Server or Sql Server. If i maintain Application State where do objects are getting physically stored?
2 Answers
Application state is stored in memory. Every time the application is restarted, this is cleared out.
Because it is in memory, it cannot be used to store data accessible to a web farm.