views:

26

answers:

2

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  A: 

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.

womp
A: 

it is stored in memory on the server

MSDN

Pharabus
Thank you very much
Jeoranpaul