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

what is diffgram ?

3 Answers  


How to merge 2 tables fields in DataTable in asp.net

6 Answers   Wipro,


Explain the scenario where we go for inpro and outpro session?

3 Answers  


i cant get Primary output selection from the Dialog box While Creating Setup and Deployment the web application how to solve it..

1 Answers  


i have one gridview contains edititemtemplate(which contains update and cancel buttons) and i have one item template (contains edit button) i want the code for update and cancelbuttons in edit item template and i want the code for edit button in itemtemplate. please help me

4 Answers  






what are configuration files?

0 Answers  


Where is asp.net session stored?

0 Answers  


Why we use asp.net for website development?

0 Answers  


is there any third party tools are using in .net technologies? what are there ? give me the brief introduction?

0 Answers   eXensys,


Where the assembly is stored in asp.net?

0 Answers  


About web methods and its various attributes ?

1 Answers   Digital GlobalSoft,


What is _dopostback in asp net?

0 Answers  


Categories