If I had a class with a static property that is set when a user loads a particular page, is that static value unique to that users session?
In other words, if a seco
Static fields and properties are shared across all instances of a class. All of your users will end up sharing the same value.
The value will be there until the ASP.NET worker process recycles itself (which happens periodically).