WebControlAdapter.Render(HtmlTextWriter) Method

Definition

Generates the target-specific markup for the control to which the control adapter is attached.

protected public:
 override void Render(System::Web::UI::HtmlTextWriter ^ writer);
protected internal override void Render (System.Web.UI.HtmlTextWriter writer);
override this.Render : System.Web.UI.HtmlTextWriter -> unit
Protected Friend Overrides Sub Render (writer As HtmlTextWriter)

Parameters

writer
HtmlTextWriter

The HtmlTextWriter containing methods to render the target-specific output.

Remarks

The Render method generates target-specific markup to send to the client browser. Render is called in place of the WebControl.Render method if a WebControlAdapter object is attached to a WebControl object.

Notes to Inheritors

The Render(HtmlTextWriter) base method calls RenderBeginTag(HtmlTextWriter), then RenderContents(HtmlTextWriter), and then RenderEndTag(HtmlTextWriter). If you override Render(HtmlTextWriter) and do not call the base method, you must be sure to provide this functionality.

Applies to

See also