I get this error:
Control 'ckbEchelonList' referenced by the
ControlToValidate property of 'valEchelonList' cannot be
validated.
I also noticed the pulldown to select controls to validate
in the IDE only shows textboxes and listboxes from my
page. So I'm thinking these validation controls can't
validate checkboxlists. Is this so? How do I make sure a
check occurs in a checkboxlist?
<code>
oneSelected = false;
for(int i=0; i < CheckBoxList.Items.Count; i++) {
if (CheckBoxList.Items[i].Selected)
oneSelected = true;
}
</code>
"Dan" <mrfix...@nethere.com> wrote in message
news:011201c34648$4016ede0$a501...@phx.gbl...