Events and Life Cycle of a Page (ASP.Net 1.x VS ASP.Net 2.0):
ASP.NET 2.0 adds a few new events to allow you to follow the request processing more closely and precisely.
These new events are discussed in the following table.
New Events in ASP.NET 2.0:
|
Events |
Description |
|---|---|
|
PreInit |
This occurs before the page begins initialization. This is the first event in the life of an ASP.NET 2.0 page. |
|
InitComplete |
This occurs when the page initialization is completed. |
|
PreLoad |
This occurs immediately after initialization and before the page begins loading the state information. |
|
LoadComplete |
This occurs at the end of the load stage of the page's life cycle. |
|
PreRenderComplete |
This occurs when the pre-rendering phase is complete and all child controls have been created. After this event, the personalization data and the view state are saved and the page renders to HTML. |
This new features enable developer to dynamically modify the page output and the state of constituent controls by handling these events.

Ritam AtarthyPosted Nov 30, 2010, 5:50 AM
Good Work
Jai Prakash VishwakarmaPosted Dec 21, 2008, 12:32 PM
Good Point about Page Life Cycle in asp.net 2.0 Thanks www.interviewsworld.com