共用方式為


UserControl.Attributes 屬性

定義

取得 .aspx 檔案內的使用者控制項標記中所宣告的所有屬性 (Attribute) 名稱和值配對的集合。

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"))                    

適用於

另請參閱