Label.AssociatedControlID 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 Label 控件关联的服务器控件的标识符。
public:
virtual property System::String ^ AssociatedControlID { System::String ^ get(); void set(System::String ^ value); };
public virtual string AssociatedControlID { get; set; }
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.AssociatedControlConverter))]
[System.Web.UI.Themeable(false)]
public virtual string AssociatedControlID { get; set; }
member this.AssociatedControlID : string with get, set
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.AssociatedControlConverter))>]
[<System.Web.UI.Themeable(false)>]
member this.AssociatedControlID : string with get, set
Public Overridable Property AssociatedControlID As String
属性值
一个字符串,对应于 Web 窗体中包含的服务器控件的 ID。 默认值为空字符串 (""),指示 Label 控件不与其他服务器控件相关联。
- 属性
注解
AssociatedControlID使用 属性可将控件Label与 Web 窗体上的另一个服务器控件相关联。 当控件与另一个 Label 服务器控件关联时,其属性可用于扩展关联控件的功能。 可以将该 Label 控件用作另一个控件的标题,也可以设置关联控件的选项卡索引或热键。
AssociatedControlID设置 属性后,控件Label呈现为 HTML label
元素,并将 for
属性设置为ID关联控件的 属性。 可以使用 属性 label
设置元素 Label 的其他属性。 例如,可以使用 Text 和 AccessKey 属性为关联的控件提供标题和热键。
无法通过主题或样式表主题设置此属性。 有关详细信息,请参阅 ThemeableAttribute 和 ASP.NET 主题和皮肤。