How do static properties work in an asp.net environment?

Statics are unique to the application domain, all users of that application domain will share the same value for each static property. When you see the word static, think “there will only be one instance of this.” How long that instance lasts is a separate question, but the short answer is that it is variable.

If you want to store values specific to the user look into Session State.

Leave a Comment