Hi, I have a fairly basic question -
If I have a class acting as a custom http handler that handles http page requests (by implementing (HttpHandler.ProcessRequest), when does it get instantiated, and is it shared across sessions? I'm basically wondering, if I have private class variables in my handler, will each session have a different instance of those variables or will they be shared?
Thanks for the help!
If I have a class acting as a custom http handler that handles http page requests (by implementing (HttpHandler.ProcessRequest), when does it get instantiated, and is it shared across sessions? I'm basically wondering, if I have private class variables in my handler, will each session have a different instance of those variables or will they be shared?
Thanks for the help!