HtmlControl.Attributes Property
.NET Framework 3.0
Gets a collection of all attribute name and value pairs expressed on a server control tag within the ASP.NET page.
Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public AttributeCollection get_Attributes ()
public function get Attributes () : AttributeCollection
Not applicable.
Property Value
A System.Web.UI.AttributeCollection object that contains all attribute name and value pairs expressed on a server control tag within the Web page.Use this property to programmatically access the attributes of the HTML server control. All HTML server controls store their attributes in the Control.ViewState property.
HTML attributes are treated by the .NET Framework as properties on the HTML server control to which they belong.
For additional information on the attributes collection, see the System.Web.UI.AttributeCollection class.
| Topic | Location |
|---|---|
| How to: Set HTML Attributes for Controls in ASP.NET Web Pages | Building ASP .NET Web Applications |
| How to: Set HTML Attributes for Controls in ASP.NET Web Pages | Building ASP .NET Web Applications |
The following code example demonstrates how to use the Attributes property to determine the attributes of the HtmlSelect control.
Community Additions
ADD
Show: