Edge Rewrite
// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a21cc0758c19c465

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