Using HttpServerUtility.Transfer with IHttpHandler
Last week I was working on some kind of lightweight downloadhandler where i could pass some information from one page to the downloadhandler by using the HttpContext.Items collection. To be able to use the HttpContext.Items collection on the downloadhandler, I have to use the HttpServerUtility.Transfer() method (details can found at MSDN), which sends the [...]