HtmlForm.Render(HtmlTextWriter) Method

Definition

Renders the HtmlForm control to the specified HtmlTextWriter object.

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

Parameters

output
HtmlTextWriter

The HtmlTextWriter that receives the rendered content.

Exceptions

The HtmlForm control is not rendered without a reference to the Page instance.

Remarks

The Render method renders an HTML <iframe> element if the SmartNavigation property is set to true. The Render method calls the base Render method.

The Render method is used primarily by control developers extending the functionality of the HtmlForm 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 HtmlForm control's child controls are correctly rendered.

Applies to

See also