Page.RegisterArrayDeclaration Method (String, String)

 
Note: This API is now obsolete.

Declares a value that is declared as an ECMAScript array declaration when the page is rendered.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

No code example is currently available or this language may not be supported.

Parameters

arrayName
Type: System.String

The name of the array in which to declare the value.

arrayValue
Type: System.String

The value to place in the array.

This method can be used by script-based controls to declare themselves within an array so that a client script library can work with all the controls of the same type.

The RegisterArrayDeclaration method has been deprecated. Use the RegisterArrayDeclaration method in the ClientScriptManager class.

The following code example uses the RegisterArrayDeclaration method to declare an array, myArray, that contains three objects named x, y, and z. The example defines and registers a startup script using the RegisterStartupScript method. When the ECMAScript doClick function is called from the page that contains this code, the array and its objects are initialized.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: