What is an HttpHandler in ASP.NET

后端 未结 6 698
遥遥无期
遥遥无期 2020-12-02 05:58

What is an HttpHandler in ASP.NET? Why and how is it used?

6条回答
  •  既然无缘
    2020-12-02 06:35

    An HttpHandler (or IHttpHandler) is basically anything that is responsible for serving content. An ASP.NET page (aspx) is a type of handler.

    You might write your own, for example, to serve images etc from a database rather than from the web-server itself, or to write a simple POX service (rather than SOAP/WCF/etc)

提交回复
热议问题