This documentation is archived and is not being maintained.
WebControl.RenderBeginTag Method
.NET Framework 1.1
Renders the HTML opening tag of the control into the specified writer. This method is used primarily by control developers.
[Visual Basic] Public Overridable Sub RenderBeginTag( _ ByVal writer As HtmlTextWriter _ ) [C#] public virtual void RenderBeginTag( HtmlTextWriter writer ); [C++] public: virtual void RenderBeginTag( HtmlTextWriter* writer ); [JScript] public function RenderBeginTag( 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 | RenderEndTag | RenderContents | System.Web.UI.HtmlTextWriter
Show: