HtmlTitle.Render(HtmlTextWriter) Method

Definition

Renders the HtmlTitle control to the specified HtmlTextWriter object.

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

A HtmlTextWriter that contains the output stream to render on the client.

Remarks

The Render method first calls the RenderBeginTag method using the Title member of the HtmlTextWriterTag enumeration. Next, any child controls of the HtmlTitle control are rendered. Finally, the RenderEndTag method is called.

Applies to

See also