Manages client partial-page updates of server UpdatePanel controls. In addition, defines properties, events, and methods that can be used to customize a Web page with client script.
Initializes a new instance of the Sys.WebForms.PageRequestManager Class.
Stops all updates that would occur as a result of an asynchronous postback. The abortPostBack method stops the currently executing postback. To cancel a new postback, provide an event handler for the initializeRequest event and use the cancel event of the Sys.CancelEventArgs class.
Raised before the processing of an asynchronous postback starts and the postback request is sent to the server.
The name of the handler method that will be called.
Raised after an asynchronous postback is finished and control has been returned to the browser.
The name of the handler method that will be called.
Raised during the initialization of the asynchronous postback.
The name of the handler method that will be called.
Raised after all content on the page is refreshed as a result of either a synchronous or an asynchronous postback.
The name of the handler method that will be called.
Raised after the response from the server to an asynchronous postback is received but before any content on the page is updated.
Begins an asynchronous postback.
(Optional) An array of UniqueID values or ClientID values for UpdatePanel controls that must be re-rendered.
(Optional) A string that contains the target of the event.
(Optional) A string that contains an argument for the event.
(Optional) true to cause validation.
(Optional) A string that contains the name of the validation group.
Releases ECMAScript (JavaScript) resources and detaches events. the dispose method to free client resources. The PageRequestManager instance calls the dispose method during the window.unload event of the browser. If you call the dispose method and then reference members of the PageRequestManager class, an error occurs. In typical page developer scenarios, you do not have to call the dispose method.
Returns the instance of the PageRequestManager class for the page.
The current instance of the PageRequestManager class. You do not create a new instance of the PageRequestManager class directly. Instead, an instance is available when partial-page rendering is enabled.
boolean
Raised before the processing of an asynchronous postback starts and the postback request is sent to the server. @param beginRequestHandler The handler method that will be removed.
Raised after an asynchronous postback is finished and control has been returned to the browser.
The name of the handler method that will be removed.
Raised during the initialization of the asynchronous postback.
The name of the handler method that will be called.
Raised after all content on the page is refreshed as a result of either a synchronous or an asynchronous postback.
The name of the handler method that will be called.
Raised after the response from the server to an asynchronous postback is received but before any content on the page is updated.