|
How to associate an asp:Label with a TextBox or other Form control?
by: Itfunda
Product Type: Tips and Tricks (Books)
Technologies: ASP.NET
This how to describe how to attach an asp:Label control with the TextBox so that clicking the asp:Label cause focus on the TextBox.
ASPX Page <p> <asp:Label ID="lblName" runat="server" AssociatedControlID="txtFirstName" Text="First Name: " /> <asp:TextBox ID="txtFirstName" runat="server" /> </p>
AssociateControlID property of the Label control can be specified to the TextBox id that associates the Label to the TextBox. Clicking on the Label control focuses the TextBox.
|