Microsoft’s article on this is more detailed than the following table.
Here is a quick summary of the page events and their load order. Taken from AspAlliance
Page Events Summary
| Method | PostBack | Controls |
| Constructor | Always | All |
| AddParsedSubObject | Always | All |
| DeterminePostBackMode | Always | Page |
| OnInit | Always | All |
| LoadPageStateFromPersistenceMedium | PostBack | Page |
| LoadViewState | PostBack | All |
| ProcessPostData1 | PostBack | Page |
| OnLoad | Always | All |
| ProcessPostData2 | PostBack | Page |
| RaiseChangedEvents | PostBack | Page |
| RaisePostBackEvent | PostBack | Page |
| OnPreRender | Always | All |
| SaveViewState | Always | All |
| SavePageStateToPersistenceMedium | Always | Page |
| Render | Always | All |
| OnUnload | Always | All |
Related posts:
- Determining the size dimensions of uploaded images in ASP.NET This article how to describes how to determine the width and height of an image after it has been uploaded...
- An Extensible Master-Page Framework for ASP.NET 1.1 Using Pattern Oriented Design Development of a framework for master-pages using ASP.NET and C#. More… Masterpage framework in ASP.NET 1.X and ASP.NET 2.0 More…...
- Improving Application Performance in .Net Application performance has always been a concern for Web Application developers. This article contains guidelines and tips for maximizing application...
- Asp.net HTML Color Names On this page you will find a table of color names that are supported by most browsers....
- ASP.NET server controls overview This article provides an introduction to the ASP.NET server controls...
