HTTP handler

Source: Wikipedia, the free encyclopedia.

An ASP.NET HTTP handler is a process that runs in response to a request made to an ASP.NET Web application.[1] The most common handler is the ASP.NET page handler that processes .aspx files. When users request an .aspx file, the request is processed by the page through the page handler.[2]

HTTP handlers were not present in the "Classic" ASP. They implement the System.Web.IHttpHandler interface. Unlike ASP.NET Web Forms, they have no HTML-markup file, no events and other supporting. All they have is a code-file (written in any .NET-compatible language) that writes some data to the server HTTP response. HTTP handlers are similar to ISAPI extensions.[3]

An HTTP module is an assembly that is called on every request that is made to your application. HTTP modules are called as part of the ASP.NET request pipeline and have access to life-cycle events throughout the request. HTTP modules let you examine incoming and outgoing requests and take action based on the request.[4]

Unlike ASP.NET Web Forms, that have ".aspx" file extension, ASP.NET handlers by default have ".ashx" file extension.[5]

Handlers are considered to be more lightweight object than ASP.NET Web Forms. That is why they are used to serve dynamically-generated images, on-the-fly generated PDF-files and similar content to the web browser.[6]

With ASP.NET Core, this HTTP handlers have been replaced with "middleware" ApplicationBuilders (IApplicationBuilder) which allow routing requests based on request headers instead of just the URL path.[7]

See also

References

  1. ^ "HTTP Handlers and HTTP Modules Overview". msdn.microsoft.com. Retrieved 15 March 2017.
  2. ^ Archiveddocs. "HTTP Handlers and HTTP Modules Overview". learn.microsoft.com. Retrieved 2023-02-06.
  3. ^ "Handlers in ASP.NET". Home. 2010-05-14. Retrieved 2023-02-06.
  4. ^ Archiveddocs. "HTTP Handlers and HTTP Modules Overview". learn.microsoft.com. Retrieved 2023-02-06.
  5. ^ Tripathi, Mayank. "HTTP Handlers And HTTP Modules In ASP.NET". www.c-sharpcorner.com. Retrieved 2023-02-06.
  6. ^ "Handlers in ASP.NET". Home. 2010-05-14. Retrieved 2023-02-06.
  7. ^ "Migrate HTTP handlers and modules to ASP.NET Core middleware". ASP.NET Core. Microsoft Docs. Retrieved 2019-10-17.

External links