IAttributeAccessor.GetAttribute Method (String)
.NET Framework (current version)
When implemented by a class, retrieves the specified attribute property from the server control.
Assembly: System.Web (in System.Web.dll)
Parameters
- key
-
Type:
System.String
A String that represents the name of the server control attribute.
The following code example demonstrates an implementation of the GetAttribute method.
' Implement the GetAttribute method for the control. When ' this method is called from a page, the values for the control's ' properties can be displayed in the page. Public Function GetAttribute(name As String) As String Implements IAttributeAccessor.GetAttribute Return CType(ViewState(name), String) End Function 'GetAttribute
.NET Framework
Available since 1.1
Available since 1.1
Show: