top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Can you describe the funcnalitity of <httpHandlers> tab in web.config?

+1 vote
279 views
Can you describe the funcnalitity of <httpHandlers> tab in web.config?
posted Dec 3, 2014 by Roshan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

HttpHandler is a code that executes when an http request for a specific resource is made to the server. For example, request an .aspx page the ASP.NET page handler is executed, similarly if an .asmx file is requested, the ASP.NET service handler is executed. An HTTP Handler is a component that handles the ASP.NET requests at a lower level than ASP.NET is capable of handling.

answer Dec 3, 2014 by Manikandan J
...