ApplicationExtensionBasePageHtml Method |
Called during page initialization in response to a
ApplicationPageHtml event.
Currently this is called for some HTML-only pages which are typically the result of AJAX requests.
A common use for this event is to register application-wide .js and .css files.
This event is NOT fired for pages built from a standard IPageTemplate-implementing template.
For such, the ApplicationPageInit event is fired instead.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public virtual void PageHtml(
IAppContext sender,
ApplicationPageHtmlArgs e
)
Public Overridable Sub PageHtml (
sender As IAppContext,
e As ApplicationPageHtmlArgs
)
Parameters
- sender
- Type: NetQuarryIAppContext
The application context object. - e
- Type: NetQuarryApplicationPageHtmlArgs
Event arguments.
See Also