Hi,
How to use Http Handler in asp.net application c#. give simple example
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.
Shivanand ArurPosted Nov 6, 2012, 8:00 AM
Basically in asp.net, when u run an application it goes through various steps and events..
First the HttpModule Events are fired.
Second the HttpHandler Events are fired.
Third the Page Events are fired.
Fourth, again the HttpModule events are fired.
First try to understand the functionality of the asp.net application life cycle and the events...
http://www.codeproject.com/Articles/73728/ASP-NET-Application-and-Page-Life-Cycle
Since the Concept is quite large, I can tell u in brief that a HttpHandler is nothing else, but extension based processing. For more information check out this link...
http://www.codeproject.com/Articles/30907/The-Two-Interceptors-HttpModule-and-HttpHandlers