Label.AssociatedControlID Property
Assembly: System.Web (in system.web.dll)
[ThemeableAttribute(false)] [TypeConverterAttribute(typeof(AssociatedControlConverter))] public: virtual property String^ AssociatedControlID { String^ get (); void set (String^ value); }
/** @property */ public String get_AssociatedControlID () /** @property */ public void set_AssociatedControlID (String value)
public function get AssociatedControlID () : String public function set AssociatedControlID (value : String)
Not applicable.
Property Value
A string value corresponding to the ID for a server control contained in the Web form. The default is an empty string (""), indicating that the Label control is not associated with another server control.Use the AssociatedControlID property to associate a Label control with another server control on a Web form. When a Label control is associated with another server control, its attributes can be used to extend the functionality of the associated control. You can use the Label control as a caption for another control, or you can set the tab index or hot key for an associated control.
When the AssociatedControlID property is set, the Label control renders as an HTML label element, with the for attribute set to the ID property of the associated control. You can set other attributes of the label element using the Label properties. For example, you can use the Text and AccessKey properties to provide the caption and hot key for an associated control.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and Introduction to ASP.NET Themes.
| Topic | Location |
|---|---|
| Walkthrough: Creating an Accessible Web Application | Building ASP .NET Web Applications in Visual Studio |
Reference
Label ClassLabel Members
System.Web.UI.WebControls Namespace
AccessKey
TabIndex
Other Resources
How to: Set Hotkeys for an ASP.NET Server ControlLabel Web Server Control
How to: Use Label Web Server Controls as Captions
Walkthrough: Creating an Accessible Web Application
How to: Protect Against Script Exploits in a Web Application by Applying HTML Encoding to Strings