System.Web.UI.WebControls.WebControl.RenderContents Method

Renders the contents of the control to the specified writer. This method is used primarily by control developers.

Syntax

protected virtual void RenderContents (System.Web.UI.HtmlTextWriter writer)

Parameters

writer
A System.Web.UI.HtmlTextWriter that represents the output stream to render HTML content on the client.

Remarks

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.

Requirements

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0