UserControl.Attributes 属性

定义

获取在 .aspx 文件中的用户控件标记中声明的所有特性名和值对的集合。

public:
 property System::Web::UI::AttributeCollection ^ Attributes { System::Web::UI::AttributeCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Web.UI.AttributeCollection Attributes { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Attributes : System.Web.UI.AttributeCollection
Public ReadOnly Property Attributes As AttributeCollection

属性值

AttributeCollection

包含在用户控件标记中声明的所有名称和值对的 AttributeCollection 对象。

属性

示例

下面的代码示例使用用户控件 Attributes 的属性访问 Message 自定义控件标记中声明的属性,该属性实例化了包含该控件的页面上的用户控件。

// 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"]);
' 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"))                    

适用于

另请参阅