WebControl.RenderContents Method
.NET Framework 3.0
Renders the contents of the control to the specified writer. This method is used primarily by control developers.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
protected void RenderContents ( HtmlTextWriter writer )
protected internal function RenderContents ( writer : HtmlTextWriter )
Not applicable.
Parameters
- writer
A HtmlTextWriter that represents the output stream to render HTML content on the client.
Override the RenderContents 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 RenderContents method or call the RenderChildren at the point where you want the child controls to be rendered to the text writer.
Community Additions
ADD
Show: