What methods are fired during the page load?

PreInit
Check the IsPostBack property

Create or re-create dynamic controls.
Set a master page,Theme ,set profile property


Load viewstate

Init
after all controls have been initialized

InitComplete
Raised by the Page object.

PreLoad
code common

Load
The Page calls the OnLoad event method on the Page


Control events
......

LoadComplete
..

PreRender
...
SaveStateComplete
...
Render
..
Unload
ViewState is available
After the Init() and before the Page_Load(),

or OnLoad() for a control.
System.Web.UI.Page is namespafe for asp.net page

System.Web.UI.Page.Culture has user locale data.