Registers an ECMAScript (JavaScript) array declaration with the ScriptManager control each time an asynchronous postback occurs, and then adds the array to the page by using an array name and array value.
Syntax
CSharp
public static void RegisterArrayDeclaration (
Page page,
string arrayName,
string arrayValue
)
VisualBasic
Public Shared Sub RegisterArrayDeclaration ( _
page As Page, _
arrayName As String, _
arrayValue As String _
)
ManagedCPlusPlus
public:
static void RegisterArrayDeclaration (
Page^ page,
String^ arrayName,
String^ arrayValue
)
JSharp
public static void RegisterArrayDeclaration (
Page page,
String arrayName,
String arrayValue
)
Parameters
- page (Page)
The Page object that is registering the array.
- arrayName (String)
The name of the array to register.
- arrayValue (String)
The array value or values to register.
Remarks
The RegisterArrayDeclaration method is used to a register a client script array that is compatible with partial-page rendering and that has no Microsoft AJAX Library dependencies. This method registers the array each time an asynchronous postback occurs. To register an array for a control that is inside an UpdatePanel control so that the array is registered only when the panel is updated, use the RegisterArrayDeclaration(Control, String, String) overload of this method. If you are registering an array that does not pertain to partial-page updates and you want to register an array only one time during initial page rendering, use the RegisterArrayDeclaration(String, String) method of the ClientScriptManager class. You can get a reference to the ClientScriptManager object from the ClientScript property of the page.
Exceptions
Assembly: System.Web.Extensions (Module: System.Web.Extensions)