Hola a todos,aqui sigo a vueltas con el checkboxlist,ahora quiero validarlo y q por lo menos haya una opcion marcada.Sabeis como puedo hacerlo??
Estoy probando esto,xo no funciona:
.aspx
<asp:CheckBoxList ID="checksecteur" runat="server" RepeatColumns="2" AutoPostBack="True" Height="146px" Width="494px" >
<asp:ListItem>Agroalimentaire</asp:ListItem>
<asp:ListItem>BTP</asp:ListItem>
<asp:ListItem>Education et Formation</asp:ListItem>
<asp:ListItem>Fournitures industrielles et équipement</asp:ListItem>
<asp:ListItem>Informatique</asp:ListItem>
</asp:CheckBoxList>
<br />
<asp:CustomValidator ID="CustomValidator1" runat="server"
ErrorMessage="Campo Obligatorio" OnServerValidate="ValidaCheckBox">
</asp:CustomValidator>
.vb
Protected Sub ValidaCheckBox(ByVal sender As Object, ByVal args As ServerValidateEventArgs)
args.IsValid = False
Dim i As Integer
For i = 0 To checksecteur.Items.Count - 1
If checksecteur.Items(i).Selected = True Then
args.IsValid = True
End If
Next
End Sub
Muchas gracias