Render Method

Directs content to a provided HtmlTextWriter output stream.

Syntax

Visual Basic Overridable  Protected   Sub 
Render(
        ByVal oWriter As HtmlTextWriter,
        ByVal sPathID As RenderPathID
)
C# protected   virtual void 
Render(
        HtmlTextWriter oWriter,
        RenderPathID sPathID
);
Managed C++ protected:   virtual void 
Render(
        HtmlTextWriter oWriter,
        RenderPathID sPathID
);
JScript protected  function
Render(
        oWriter : HtmlTextWriter,
        sPathID : RenderPathID
);

Parameters

oWriter Required. HtmlTextWriter object that receives the content.
sPathID Required. RenderPathID that specifies one of the following rendering paths:
DownLevelPathThe downlevel browser path. With Windows Internet Explorer WebControls, a downlevel browser is Microsoft Internet Explorer 5.01 or earlier or a browser other than Internet Explorer.
UpLevelPathThe uplevel browser path. With WebControls, an uplevel browser is Internet Explorer 5.5 or later.
DesignerPathRender contents for the Microsoft Visual Studio .NET Editor.

Return Value

No return value.

Applies To

BaseChildNode

See Also

Internet Explorer WebControls