Talk:HTTP handler

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

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