aspnet-js-aspxclientutils.md
Represents an object containing service static functions and properties which can be useful when performing client-side processing.
declare class ASPxClientUtils
In order to use the functionality provided by the ASPxClientUtils object on the client side, the object’s client scripts should be registered. If there is a DevExpress control on a page, the scripts are registered automatically. Otherwise, you should register it explicitly using the static ASPxWebControl.RegisterBaseScript method.
protected void Page_Load(object sender, EventArgs e) {
DevExpress.Web.ASPxWebControl.RegisterBaseScript(this);
}
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) _
Handles Me.Load
DevExpress.Web.ASPxWebControl.RegisterBaseScript(Me)
End Sub
See Also