Hi,
How I check at-least one is checkbox is checked in CheckBoxList control, I want to verify this in VB Code-Behind after clicking Button (Asp.net)
<asp:CheckBoxList ID="CBL_DD" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Text="D1" Value="1" />
<asp:ListItem Text="D2" Value="2" />
<asp:ListItem Text="D3" Value="3" />
<asp:ListItem Text="D4" Value="4" />
<asp:ListItem Text="D5" Value="5" />
</asp:CheckBoxList>
<asp:Button ID="Btn_Verify_ChkBoxList" runat="server" Text="VerifyChkList" Width="60px" />
Thanks in advance.