UserControl.Attributes 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取在 .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 对象。
- 属性
示例
下面的代码示例使用用户控件 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"))