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::GetTagKey Method (String^)

 

Obtains the HtmlTextWriterTag enumeration value associated with the specified markup element.

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

protected:
virtual HtmlTextWriterTag GetTagKey(
	String^ tagName
)

Parameters

tagName
Type: System::String^

The markup element for which to obtain the HtmlTextWriterTag.

Return Value

Type: System.Web.UI::HtmlTextWriterTag

The HtmlTextWriterTag enumeration value; otherwise, if tagName is not associated with a specific HtmlTextWriterTag value, Unknown.

If tagName is null, an empty string (""), or cannot be found in the table of markup tag names, the GetTagKey method returns the Unknown field.

The following code example shows how to override the overload of the RenderBeginTag method that takes a string as its parameter. The string is passed to the GetTagKey method, which converts it to the corresponding HtmlTextWriterTag enumeration member, and then passes that to the RenderBeginTag overload that takes a HtmlTextWriterTag enumeration value as a parameter.

virtual void RenderBeginTag( String^ tagName ) override
{

   // Call the overloaded RenderBeginTag(HtmlTextWriterTag) method.
   RenderBeginTag( GetTagKey( tagName ) );
}

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