How to handle concurrent connections asp net (c#)
See the question and my original answer on StackOverflowYou should avoid static as it means the variable will be the same for every user connected (plus you will probably face threading issue).
Here is a link on SO about this: What is better: Static variable V.S. Asp.NET Application Session?