Raises the Page.PreRenderComplete event after the Page.OnPreRenderComplete(EventArgs) event and before the page is rendered.
- e
- An EventArgs that contains the event data.
The Page.OnPreRenderComplete(EventArgs) method is called when the prerendering stage of the page life cycle is complete. At this stage of the page life cycle, all controls are created and the page is ready to render the output.
This is the last event called before the page's view state is saved.
Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.
The Page.OnPreRenderComplete(EventArgs) method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.