different stages of an ASP.NET page :Page request :When ASP.NET gets a page request, it decides whether to parse and compile the page, or there would be a cached version of the page; accordingly the response is sent.Starting of page life cycle :At this stage, the Request and Response objects are set. If the request is an old request or post back, the IsPostBack property of the page is set to true. The UICulture property of the page is also set.Page initialization :At this stage, the controls on the page are assigned unique ID by setting the UniqueID property and the themes are applied. For a new request, postback data is loaded and the control properties are restored to the view-state values.Page load :At this stage, control properties are set using the view state and control state values.Validation:Validate method of the validation control is called and on its successful execution, the IsValid property of the page is set to true.Postback event handling.If the request is a postback (old request), the related event handler is invoked.ASP.NETxixPage rendering :At this stage, view state for the page and all controls are saved. The page calls the Render method for each control and the output of rendering is written to the OutputStream class of the Response property of Page.Unload:The rendered page is sent to the client and page properties, such as Response and Request, are unloaded and all cleanup done. - Study24x7
Social learning Network
study24x7

Default error msg

Login

New to Study24x7 ? Join Now
Already have an account? Login
10 Apr 2019 04:25 PM study24x7 study24x7

different stages of an ASP.NET page :
Page request :
When ASP.NET gets a page request, it decides whether to parse and compile the page, or there would be a cached version of the page; accordingly the response is sent.
Starting of page life cycle :
At this stage, the ...

See more

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles