Click or drag to resize

ApplicationExtensionBasePageInit Method

Called during page initialization in response to a ApplicationPageInit event. Currently this is called for all pages built from a standard IPageTemplate-implementing template. This includes the ConsoleTemplate, BootConsoleTemplate, WizTemplate, TabbedSubformTemplate, ExpandedSubformTemplate, and PopupDialogTemplate as well as other special-purpose templates. The event is fired at the end of the standard page template initialization, but before template-specific initialization. In essense this means that the event is fired mid-initialization and the extact state of the initialization will vary from template-type to template-type.

A common use for this event is to register application-wide .js and .css files.

For HTML-only pages, the ApplicationPageHtml event may be fired instead.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public virtual void PageInit(
	IAppContext sender,
	ApplicationPageArgs e
)

Parameters

sender
Type: NetQuarryIAppContext
The application context object.
e
Type: NetQuarryApplicationPageArgs
Event arguments.
See Also