vote up 1 vote down star
1

I have created HTTP handlers.

How do I create global variables for these handlers like I can with ASP.net web pages in global.asax?

flag

57% accept rate

2 Answers

vote up 4 vote down check

Add the variables to the Application instance:

System.Web.HttpContext.Current.Application["MyGlobalVariable"] = myValue;

Or, if the variable only need to live for the life of an individual request, use the Context object's Items collection:

System.Web.HttpContext.Current.Items["MyGlobalVariable"] = myValue;

Again, that will live for only the life of a single request.

link|flag
vote up 3 vote down

If your handler is specified as reusable you can also use static class members.

link|flag
thanks, this is a good alternative solution that I will investigate – wingho Oct 16 '08 at 23:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.