Skip to main content
Tab

ASPxWebControl.RegisterBaseScript(Page) Method

Registers base scripts, required to embed an ASPxWebControl control onto the specified page.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public static void RegisterBaseScript(
    Page page
)

Parameters

Name Type Description
page Page

A Page object which specifies the page to which the current ASPxWebControl belongs.

Remarks

This method is intended to solve the following problem. When the ASPxWebControl control (or one of its descendants) is placed into an AJAX Update Panel, and its Visible property is initially set to false, it can’t be displayed on this page because its scripts are not registered in the appropriate manner. To avoid this problem, use the RegisterBaseScript method, as shown below:

protected void Page_Load(object sender, EventArgs e) {
   DevExpress.Web.ASPxWebControl.RegisterBaseScript(this);
}

Note

The RegisterBaseScript method cannot be called before the Form property is initialized (for example from the PreInit event handler).

See Also