0

Possible Duplicate:
Where are static variables stored in asp.net aspx page

Hi can someone please tell me where the static variables are stored in asp.net aspx page.

Is it in the view state? If so I guess you wouldn't want to stored big complex objects?

Community
  • 1
  • 1
Coder 2
  • 4,761
  • 12
  • 40
  • 43

1 Answers1

1

Static variables will be stored in the AppDomain as part of the state of the type itself. This state willl be cleared everytime process gets recycled.

Aliostad
  • 80,612
  • 21
  • 160
  • 208