HtmlTextWriter.GetAttributeName Method
.NET Framework 2.0
Obtains the name of the markup attribute associated with the specified HtmlTextWriterAttribute value.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
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 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));
Community Additions
ADD
Show: