what is the exact purpose of http handlers and interfaces?



what is the exact purpose of http handlers and interfaces?..

Answer / ravikrishna

ASP.NET maps HTTP requests to HttpHandlers. Each HttpHandler enables processing of individual HTTP URLs or groups of URL extensions within an application. HttpHandlers have the same functionality as ISAPI extensions with a much simpler programming model

Ex
1.Default HttpHandler for all ASP.NET pages ->ASP.NET Page Handler (*.aspx)
2.Default HttpHandler for all ASP.NET service pages->ASP.NET Service Handler (*.asmx)

An HttpHandler can be either synchronous or asynchronous. A synchronous handler does not return until it finishes processing the HTTP request for which it is called. An asynchronous handler usually launches a process that can be lengthy, and returns before that process finishes
After writing and compiling the code to implement an HttpHandler, you must register the handler using your application's Web.config file.

Is This Answer Correct ?    2 Yes 3 No

Post New Answer

More ASP.NET Interview Questions

How to find the client browser type ?

4 Answers   AQA, Cognizant, Satyam,


what is the Difference between Dim Object as object AND dim obj as myform?

1 Answers   Microsoft,


What is Cookies Less Session?

0 Answers  


I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)

0 Answers   HCL,


If you have an application with multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers by using round-robbin load balancing. Explain which is the best approach to maintain login-in state for the users?

0 Answers   Siebel,


• What are HttpHandlers? • What are HttpModules?

2 Answers  


Name some asp objects?

0 Answers  


About Usage of server variables ?

2 Answers   Cognizant, CTS,


What are Http handler ?

1 Answers   Patni,


What is Difference between Production Serves and Development Servers? And Suppose, m adding/deleting C# file in a project based on the Specific Requirement. These Files are Automatically updated in Production Servers? So Which tool is needed to do This One?

0 Answers  


What are Master pages? How to define a Master page?

3 Answers  


What r the remotable objects. and how u make an application remotable

1 Answers  


Categories