WebControlAdapter.Render(HtmlTextWriter) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.