Sys.WebForms.PageRequestManager endRequest Event
Raised after an asynchronous postback is finished and control has been returned to the browser.
Syntax
Sys.WebForms.PageRequestManager.instance.add_endRequest(endRequestHandler)
Sys.WebForms.PageRequestManager.instance.remove_endRequest(endRequestHandler)
|
Term
|
Definition
|
|
endRequestHandler
|
The name of the handler method that will be called.
|
Remarks
The endRequest event is raised after an asynchronous postback is finished and control has been returned to the browser. You can use this event to provide a notification to users or to log errors.
For more information about the PageRequestManager event model, see Working with PageRequestManager Events.
Example
The following example shows how to use the endRequest event to notify the user when an error has occurred during a partial-page update.