I created HttpHandler class in ASP.NET and configured a website to handle any request with the *.test path.
I have some IHttpHandler implementations where they may optionally have authentication applied to them.
I have an IHttpHandler returning a file.When the response stream is compressed, either automatically using Telerik RadCompression or by explicitly setting a filter using
We have a website that we recently released based mostly on SharePoint. Some of the site needed to return just straight XML. The consultants on the project implemented the xml returns as .aspx pages t
This is the Raw response that is generated from the server (using Fiddler2) HTTP/1.1 200 OK Cache-Control: private
What can I do to avoid ASP.Net creating a new WorkerAppDomain for my Custom IHttpHandler. As far I know the problem is the SimpleHttpworkerRequest which runs a new Appdomain.
I have an HTTP Handler in an ASP.Net project and wanted to produce an image based upon a Silverlight User Control rendered out as a bitmap.
I have an HTTPHandler that returns some XML.I am trying to figure out 开发者_运维技巧how to get this to cache in the browser, as if it were a static XML file.
the following code is a handler that takes in a Percent (percent of the graph to show as blue), Max (maximum value), and a Gallons value (number) to create a thermometer-style progress meter. It outpu
I put together a download script after some wonderful help from stack overflow the other day. However I have now found that after the file has been downloaded I need to reload the page to get rid of t