Page.PreInit Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs before page initialization.
public:
event EventHandler ^ PreInit;
public event EventHandler PreInit;
member this.PreInit : EventHandler
Public Custom Event PreInit As EventHandler
Event Type
Remarks
This event enables you to check conditions of the page request, such as whether the page is being loaded in response to a postback. You can also check the values of profile properties.
The event enables you to set values that are used later in the page life cycle. You can dynamically set a master page or a theme for the requested page, and create dynamic controls.
For more information about how the PreInit event fits into the ASP.NET life cycle, see ASP.NET Page Life Cycle Overview.