ScriptManager.RegisterDataItem Method (Control, String)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Sends custom data to a control during partial-page rendering.
Namespace: System.Web.UI
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
Parameters
- control
- Type: System.Web.UI.Control
The control that is receiving the data.
- dataItem
- Type: System.String
The data that is sent to the control.
| Exception | Condition |
|---|---|
| ArgumentNullException |
control is null. |
| InvalidOperationException |
The RegisterDataItem method is called during a postback. |
| ArgumentException |
dataItem is already registered for control. |
Use the RegisterDataItem method to send data from the server to the client during asynchronous postbacks, regardless of whether the control receiving the data is inside an UpdatePanel control.
The RegisterDataItem method can be called only during an asynchronous postback. To determine whether a postback is asynchronous, use the IsInAsyncPostBack property. This method invokes the overload that takes a parameter named isJsonSerialized that is set to false. When the isJsonSerialized parameter is set to false, the string is not serialized as JavaScript Object Notation (JSON). For more information about the JSON format, see the Introducing JSON Web site.
The data items that are registered with the RegisterDataItem method can be accessed in client script during the pageLoading, pageLoaded, and endRequest events of the PageRequestManager object. When you handle these events, the custom data is passed in an event argument object. For example, if you provide a handler for the pageLoading event, the custom data is passed in the PageLoadingEventArgs class, which exposes a dataItems property.
The following example shows how to send data to two Label controls on a page during an asynchronous postback. The Label controls are not inside an UpdatePanel control.
Note
|
|---|
|
The data that is sent in this example is for illustration only. In a real-world application, you would use the RegisterDataItem method to send custom data from the server. |
<%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void Page_Load(object sender, EventArgs e) { if (ScriptManager1.IsInAsyncPostBack) { System.Web.Script.Serialization.JavaScriptSerializer json = new System.Web.Script.Serialization.JavaScriptSerializer(); ScriptManager1.RegisterDataItem(Label1, DateTime.Now.ToString()); ScriptManager1.RegisterDataItem(Label2, json.Serialize("more data"), true); } } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>ScriptManager RegisterDataItem Example</title> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <script type="text/javascript" language="javascript"> Sys.WebForms.PageRequestManager.getInstance().add_pageLoading(PageLoadingHandler); function PageLoadingHandler(sender, args) { var dataItems = args.get_dataItems(); if ($get('Label1') !== null) $get('Label1').innerHTML = dataItems['Label1']; if ($get('Label2') !== null) $get('Label2').innerHTML = dataItems['Label2']; } </script> <asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server"> <ContentTemplate> UpdatePanel content. <asp:Button ID="Button1" Text="Submit" runat="server" /> </ContentTemplate> </asp:UpdatePanel> <hr /> <asp:Label ID="Label1" runat="server" /> <br /> <asp:Label ID="Label2" runat="server" /> </div> </form> </body> </html>
Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note