Initializes the System.Web.UI.HtmlTextWriter object and calls on the child controls of the System.Web.UI.Page to render.
- writer
- The System.Web.UI.HtmlTextWriter that receives the page content.
The Page.Render(HtmlTextWriter) method is responsible for creating the text and markup that is sent to the client browser. The default Page.Render(HtmlTextWriter) method calls Control.RenderChildren(HtmlTextWriter) to write the text and markup for the controls contained on the page.