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
No, it's nothing special just because it's asp.net. ASP.NET itself is just a regular .NET assembly collection. If you want to save things per sessions then you should use the session state. If not, be careful since there are many threads that can access your static data. You should read and learn how threads, locks and race conditions work together.