Renders the contents of the control to the specified writer. This method is used primarily by control developers.
- writer
- A System.Web.UI.HtmlTextWriter that represents the output stream to render HTML content on the client.
Override the WebControl.RenderContents(System.Web.UI.HtmlTextWriter) method to render the contents of the control between the begin and end tags. The default implementation of this method renders any child controls.
If your control has child controls, you must either call the base WebControl.RenderContents(System.Web.UI.HtmlTextWriter) method or call the System.Web.UI.Control.RenderChildren(System.Web.UI.HtmlTextWriter) at the point where you want the child controls to be rendered to the text writer.