ASP.NET屬性之AssociatedControlID

AssociatedControlID 是用在Asp.Net 中的 Label 控件上。給label控件關聯一個ASP.NET的控件,在點擊 這個 LABEL的時候,所關聯的ASP.NET控件會得到焦點。ide

前臺代碼以下:spa

<asp:Label ID="lbl_man" runat="server" AssociatedControlID="ckb_man">男</asp:Label>
<asp:CheckBox ID="ckb_man" runat="server" />&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Label ID="lblwomen" runat="server" AssociatedControlID="ckb_women">女</asp:Label>
<asp:CheckBox ID="ckb_women" runat="server" />
View Code

運行效果:3d

效果就是在點擊「男」的lbl_man時,ckb_man的CheckBox被關聯選中了。code

相關文章
相關標籤/搜索