Page.PreLoad Event
.NET Framework 3.0
Occurs before the page Load event.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Event PreLoad As EventHandler 'Usage Dim instance As Page Dim handler As EventHandler AddHandler instance.PreLoad, handler
/** @event */ public void add_PreLoad (EventHandler value) /** @event */ public void remove_PreLoad (EventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The PreLoad event is raised after all postback data processing and before the Load event. There is a second attempt to load postback data before the OnLoadComplete event. For more information about handling events, see Consuming Events.
Community Additions
ADD
Show: