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?
|
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?
|
|||
|
|
|
|
Add the variables to the Application instance:
Or, if the variable only need to live for the life of an individual request, use the Context object's Items collection:
Again, that will live for only the life of a single request. |
|||
|
|
|
|
If your handler is specified as reusable you can also use static class members. |
||
|