Is this static variable unique to each user.
Not.
will it interfere with other users?
Yes.
You would like to use some other persistence tools such as session state, caching , etc.
Some people use the [ThreadStatic]
attribute for fields in ASP.NET, so it is unique to each user, but it is dangerous and should not be done. Avoid this at all costs. I only pick it up if someone else recommends it.
source share