Multiple choice How does 'page rendering' work in ASP.NET page life cycle? The control properties are set using the view state and control state values. The request is postback and the related event handler is called. The view state for the page and all the controls are saved. The view state for the page and all the controls are deleted. This is the stage, in which all the page events are synchronised. Reveal answer Fill a bubble to check yourself C Correct answer Explanation This is page rendering and the page calls the Render method for each control and the output of rendering is written to the OutputStream class of the Page's Response property.