WebControl.RenderContents(HtmlTextWriter) Method

Definition

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

protected:
 virtual void RenderContents(System::Web::UI::HtmlTextWriter ^ writer);
protected public:
 virtual void RenderContents(System::Web::UI::HtmlTextWriter ^ writer);
protected virtual void RenderContents (System.Web.UI.HtmlTextWriter writer);
protected internal virtual void RenderContents (System.Web.UI.HtmlTextWriter writer);
abstract member RenderContents : System.Web.UI.HtmlTextWriter -> unit
override this.RenderContents : System.Web.UI.HtmlTextWriter -> unit
Protected Overridable Sub RenderContents (writer As HtmlTextWriter)
Protected Friend Overridable Sub RenderContents (writer As HtmlTextWriter)

Parameters

writer
HtmlTextWriter

A HtmlTextWriter that represents the output stream to render HTML content on the client.

Remarks

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.

Applies to

See also