Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HtmlTextWriter::RegisterTag Method (String^, HtmlTextWriterTag)

 

Registers markup tags, whether literals or dynamically generated, from the source file so that they can be properly rendered to the requesting client.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

protected:
static void RegisterTag(
	String^ name,
	HtmlTextWriterTag key
)

Parameters

name
Type: System::String^

A string that contains the HTML tag.

key
Type: System.Web.UI::HtmlTextWriterTag

An HtmlTextWriterTag that specifies which element to render.

The predefined markup tags of the HTML language are registered by calls to the RegisterTag method when the first HtmlTextWriter object is created. Dynamic markup tags can be registered by using the RegisterTag method at other times.

The registration table used by the RegisterTag method is static, so registration of tags applies to all HtmlTextWriter objects on the host computer.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft