asp dot net..Page life cycle
what is page life cycle in asp dot net. how to use in asp dot net,, plz suggested me,,,
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.
Raja TPosted Feb 10, 2016, 2:08 AM
Once the HTTP page handler class is fully identified, the ASP.NET runtime calls the handler'sProcessRequest to start the process. This implementation begins by calling the methodFrameworkInitialize(), which builds the control trees for the page. This is a protected and virtual member of TemplateControl class, class from which page itself derives.
Next the processRequest() makes page transits various phases: initialization, loading of viewstate and postback data, loading of page's user code and execution postback server-side events. Then page enters in render mode, the viewstate is updated and HTML generated is sent to the output console. Finally page is unloaded and request is considered completely served.
Chandu KumawatPosted Feb 10, 2016, 2:03 AM