Hi friends,
I want to know that what's the HttpHandler? why we used it?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Gohil JayendrasinhPosted Apr 12, 2012, 3:05 AM
HttpHandlers are classes that implement the IHttpHandler and IHttpAsyncHandler interfaces.
IHttpHandler
You can write custom HTTP handlers to process specific, predefined types of HTTP requests in any Common Language Specification (CLS)
compliant language. Executable code defined in the HttpHandler classes, rather than conventional ASP or ASP.NET Web pages, responds to these specific requests
Classes that Implement IHttpHandler
HttpApplication
HttpRemotingHandler
Page
IHttpAsyncHandler
An IHttpAsyncHandler class can be associated with a file name extension or a particular URL by a configuration file, in the section.
The ASP.NET infrastructure will then instantiate and call the handler when the corresponding request is received.
Classes that Implement IHttpHandler
HttpApplication
For more information Why use a handler? and Why not to use HttpHandlers
http://codebetter.com/karlseguin/2006/05/25/httphandlers-%E2%80%93-learn-them-use-them/
SenthilkumarPosted Apr 12, 2012, 1:00 AM