HtmlContainerControl.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.
Renders the HtmlContainerControl control to the specified HtmlTextWriter object.
protected:
override void Render(System::Web::UI::HtmlTextWriter ^ writer);
protected public:
override void Render(System::Web::UI::HtmlTextWriter ^ writer);
protected 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 Overrides Sub Render (writer As HtmlTextWriter)
Protected Friend Overrides Sub Render (writer As HtmlTextWriter)
Parameters
- writer
- HtmlTextWriter
The HtmlTextWriter that receives the HtmlContainerControl content.
Remarks
The Render method overrides the HtmlControl.Render method to render the opening tag, child controls, and closing tag of the HtmlContainerControl control.
The Render method is used primarily by control developers extending the functionality of the HtmlContainerControl control.
Notes to Inheritors
When overriding the Render(HtmlTextWriter) method in a derived class, be sure to call the base class's Render(HtmlTextWriter) method so that the HtmlContainerControl control is correctly rendered.