Asp.net – Do C# static members get shared among calls to a Web site?
I'm creating a Web site using C#/Asp.net. I want to minimize object creation by setting some classes and properties as static. But I don't want those objects to be reused by subsequent calls to the Web server. I want the…