Top "Ihttphandler" questions

Defines an endpoint in the ASP.

IIS 7, HttpHandler and HTTP Error 500.21

On IIS 7, I'm trying to use custom HttpHandler for my ASP.NET web application. I use pipeline mode "classic", .NET …

asp.net iis iis-7 httphandler ihttphandler
How to send a Status Code 500 in ASP.Net and still write to the response?

I have an ASP.Net single-file web service (a .ashx file containing an IHttpHandler implementation) which needs to be able …

c# asp.net rest ihttphandler
ASP.NET: How to access Session from handler?

i'm trying to store some values in the Session from a Handler page, before i do a redirect to a …

asp.net session session-state handler ihttphandler
How do I add an HttpHandler to the web.config?

I wrote a httphandler to handle all XSLT requests. The name of the handler is XSLTHandler.cs. web.config <…

asp.net web-config httphandler ihttphandler
Update page after file download

I put together a download script after some wonderful help from stack overflow the other day. However I have now …

c# asp.net ihttphandler
Significance of bool IsReusable in http handler interface

When writing a http handler/module, there is an interface member to implement called - bool IsReusable. What is the …

asp.net httphandler ihttphandler
What is the use for IHttpHandler.IsReusable?

I'm writing a IHttpHandler and I'll need to implement a IsReusable property. When I look at the MSDN documentation it …

c# asp.net asp.net-mvc ihttphandler system.web
Streaming large video files .net

I am trying to stream a large file in webforms from an HttpHandler. It doesn't seem to work because its …

c# asp.net video-streaming webforms ihttphandler
Can ASP.NET Routing be used to create "clean" URLs for .ashx (IHttpHander) handlers?

I have some REST services using plain old IHttpHandlers. I'd like to generate cleaner URLs, so that I don't have …

asp.net ihttphandler asp.net-routing
Image from HttpHandler won't cache in browser

I'm serving up an image from a database using an IHttpHandler. The relevant code is here: public void ProcessRequest(HttpContext …

c# .net asp.net ihttphandler