Answer Posted / sanjay
The main purpose of HttpHandler is to serve all asp.net web request. For e.g. Creating web Page object -> creating server control object -> loading server control object -> rendering HTML content.
We can create our own custom HttpHandler by just inheriting IHttpHandler and using method ProcessRequest(){} and is Reusable.
we can define our own page extention e.g. simple.text
and using custom HttpHandler we can call this on url.
http://localhost/simple.text
but we have to register this custom HttpHandler in web.config
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is application in asp net?
Explain the advantages of passport authentication.
Can we have multiple web config files for an asp.net application?
What are the merits and demerits of viewstate?
How can you implement the postback property of an asp.net control?
What is full form of asp.net?
Define tracing.
How Can assign alias name for ASP.NET Web API Action?
How can we register exception filter globally?
What is owin authentication?
What is session id in web application?
How Session outproc in Sqlserver stored?
How can you identify that the page is post back?
What is the default timeout for a cookie?
What is globalization and localization in asp net?