Where are static variables stored in asp.net aspx page

后端 未结 3 516
后悔当初
后悔当初 2020-12-21 21:32

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 com

3条回答
  •  爱一瞬间的悲伤
    2020-12-21 22:03

    The static variables are stores as global variables per asp.net process.

    They are not stores on view state. So if you use only one asp.net process all users see the same variables.

提交回复
热议问题