Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

Jump to content

Talk:HTTP handler

Page contents not supported in other languages.
Add topic
From Wikipedia, the free encyclopedia
Latest comment: 10 years ago by Cangaran

WikiProject Technology|class=stub}}

Mistake:

[edit]
   Unlike ASP.NET Pages, they have no HTML-markup file, no events and other supporting.

Above sentence is wrong because All ASP.NET pages are also HTTP handlers only. All ASP.NET Page class should inherit System.Web.UI.Page which in turn implement the IHTTPHandler interface

   Unlike pages, that have ".aspx" file extension, ASP.NET handlers by default have ".ashx" file extension.

Here mistake is In ASP.NET there are four inbuilt HTTP handlers. ".ashx" file extension is for Generic Web handler which is once of the four inbuilt HTTP handlers[1]. And you can create custom HTTP handler to have whatever file extension.

Basically HTTP handlers are process running in the .net environment which is defined as class.


Cangaran (talk) 14:12, 28 September 2015 (UTC)Reply

References