Page.SaveStateComplete Event
.NET Framework 2.0
Occurs after the page has completed saving all view state and control state information for the page and controls on the page.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Event SaveStateComplete As EventHandler 'Usage Dim instance As Page Dim handler As EventHandler AddHandler instance.SaveStateComplete, handler
/** @event */ public void add_SaveStateComplete (EventHandler value) /** @event */ public void remove_SaveStateComplete (EventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
State information for controls on the Web page is saved after the PreRenderComplete event. The SaveStateComplete event is raised after the view state and control state of the page and controls on the page are saved to the persistence medium.
This is the last event raised before the page is rendered to the requesting browser.
For more information about handling events, see Handling and Raising Events.
Community Additions
ADD
Show: