HtmlTextWriter.GetAttributeName Method

Obtains the name of the markup attribute associated with the specified HtmlTextWriterAttribute value.

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

protected:
String^ GetAttributeName (
	HtmlTextWriterAttribute attrKey
)
protected String GetAttributeName (
	HtmlTextWriterAttribute attrKey
)
protected function GetAttributeName (
	attrKey : HtmlTextWriterAttribute
) : String
Not applicable.

Parameters

attrKey

The HtmlTextWriterAttribute to obtain the markup attribute name for.

Return Value

A string containing the name of the markup attribute.

The GetAttributeName method returns an empty string (""), if attrKey is not a valid HtmlTextWriterAttribute value.

The following code example shows how to use the GetAttributeName method to convert a Size enumeration value to its string name.

// Use the GetAttributeName method to associate 
// the Size attribute with its HtmlTextWriteAttribute
// enumeration value in a Write method call.
Write( GetAttributeName( HtmlTextWriterAttribute::Size ) );

// Use the GetAttributeName method to associate 
// the Size attribute with its HtmlTextWriteAttribute
// enumeration value in a Write method call.
Write(GetAttributeName(HtmlTextWriterAttribute.Size));

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: