HTTP handler vs HTTP module

后端 未结 8 1409
粉色の甜心
粉色の甜心 2020-12-02 04:21

Can someone explain in less than 2 sentences the difference between both? Yes, I know google can provide hundreds of answers but not one in 2 clear sentences:)

相关标签:
8条回答
  • 2020-12-02 05:02

    HTTP handler is the process that runs in response to a request made to an ASP.NET Web application. HTTP modules let you examine incoming and outgoing requests and take action based on the request.

    0 讨论(0)
  • 2020-12-02 05:04

    HTTP handler is where actually compilation is done based on setting. such as if page extension is .aspx then it will compile through system.web.Ui.Pagahandlefactory. once compilation is done at HTTP handle request will go though HTTP module and IIS.

    0 讨论(0)
提交回复
热议问题