This documentation is archived and is not being maintained.

HtmlTextWriter.WriteFullBeginTag Method

Writes any tab spacing and the opening tag of the specified HTML element to the HtmlTextWriter output stream.

[Visual Basic]
Public Overridable Sub WriteFullBeginTag( _
   ByVal tagName As String _
)
[C#]
public virtual void WriteFullBeginTag(
 string tagName
);
[C++]
public: virtual void WriteFullBeginTag(
 String* tagName
);
[JScript]
public function WriteFullBeginTag(
   tagName : String
);

Parameters

tagName
The HTML element to write.

Remarks

This method automatically writes the closing character (>) of the opening tag of the HTML element. Use this method for HTML elements that have no attributes.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also

HtmlTextWriter Class | HtmlTextWriter Members | System.Web.UI Namespace

Show: