Skip to main content
.NET Framework Class Library
HtmlControl..::.GetAttribute Method

Gets the value of the named attribute on the HtmlControl control.

Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in System.Web.dll)
Syntax
Protected Overridable Function GetAttribute ( _
	name As String _
) As String
protected virtual string GetAttribute(
	string name
)
protected:
virtual String^ GetAttribute(
	String^ name
)
abstract GetAttribute : 
        name:string -> string 
override GetAttribute : 
        name:string -> string 

Parameters

name
Type: System..::.String
The name of the attribute. This argument is case-insensitive.

Return Value

Type: System..::.String
The value of this attribute on the element, as a String value. If the specified attribute does not exist on this element, returns an empty string ("").
Remarks

Use the GetAttribute method to access an attribute on the HtmlControl server control. All HTML server controls store their attributes in the Control..::.ViewState property. HTML attributes are treated by the ASP.NET page framework as properties on the HTML server control to which they belong. The GetAttribute method's name parameter is case-insensitive.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.