Sys.WebForms.PageLoadedEventArgs Class
Used by the pageLoaded event of the Sys.WebForms.PageRequestManager class to send event data that represents the UpdatePanel controls that were updated and created in the most recent postback.
Namespace: Sys.WebForms
Inherits: Sys.EventArgs
var args = new Sys.WebForms.PageLoadedEventArgs();
|
Name |
Description |
|---|---|
|
Gets a JSON data structure that contains data items that were registered by using the RegisterDataItem method of the ScriptManager class. |
|
|
Gets an array of HTML <div> elements that represent UpdatePanel controls that were created when the DOM was updated during the last asynchronous postback. |
|
|
Gets an array of HTML <div> elements that represent UpdatePanel controls that were updated when the DOM was updated during the last postback. |
Note
|
|---|
|
This class contains private members that support the client-script infrastructure and are not intended to be used directly from your code. Names of private members begin with an underscore ( _ ). |
The UpdatePanel control renders HTML <div> elements. The pageLoaded event contains information about which <div> elements on the page were updated and created. The panelsCreated property is an array of panel elements that were created as a result of the current asynchronous postback. The panelsUpdated property is an array of panels that were updated as a result of the current asynchronous postback.
Note