Hi,
Please find my explanation
HttpHandlers: Http Handlers are extension based preprocessing logic based on page request.
HttpModules: Http Modules are events based preprocessing logic. BeginRequest, AuthenticateRequest, AuthorizeRequest,
PreRequestHandlerExecute, PostRequestHandlerExecute, EndRequest are the events in Http Modules before the asp.net page load.
In general asp.net page life cycle, initially Http Modules and Http Handlers are load, after that only asp.net page will load in following sequence.
Page_init
Page_Load
Page_validate
Page_Events
Page_Render
This is the use of Http Handlers and Http Modules and procedure for asp.net page life cycle.
siva
Bravi, if this helps please login to Mark As Answer. | Alert Moderator