UserControl.Attributes Property

Definition

Gets a collection of all attribute name and value pairs declared in the user control tag within the .aspx file.

C#
[System.ComponentModel.Browsable(false)]
public System.Web.UI.AttributeCollection Attributes { get; }

Property Value

An AttributeCollection object that contains all the name and value pairs declared in the user control tag.

Attributes

Examples

The following code example uses the user control's Attributes property to access the Message attribute declared in the custom control tag that instantiated the user control on the page that contains it.

C#
// Retrieve and display the 'Message' attribute tag 
// initialized in the .aspx code.
Response.Write("<b>Message tag value declared in the aspx file is : </b>" + myControl.Attributes["Message"]);

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also