This documentation is archived and is not being maintained.
WebControl.RenderEndTag Method
.NET Framework 1.1
Renders the HTML closing tag of the control into the specified writer. This method is used primarily by control developers.
[Visual Basic] Public Overridable Sub RenderEndTag( _ ByVal writer As HtmlTextWriter _ ) [C#] public virtual void RenderEndTag( HtmlTextWriter writer ); [C++] public: virtual void RenderEndTag( HtmlTextWriter* writer ); [JScript] public function RenderEndTag( writer : HtmlTextWriter );
Parameters
- writer
- A System.Web.UI.HtmlTextWriter that represents the output stream to render HTML content on the client.
Remarks
This is made public so other controls can render multiple controls in between the opening and closing tags of a Web server control.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
WebControl Class | WebControl Members | System.Web.UI.WebControls Namespace | RenderBeginTag | RenderContents | System.Web.UI.HtmlTextWriter
Show: