HtmlForm.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 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
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.