Here is an example on how to validate ASP.Net Web Forms checkbox on client side using custom validator and jQuery.
c#, .net, asp.net, source code, info,
c#, .net, asp.net, source code, info,
bool isAnyItemSelected = cblCheckBoxList.Items.Cast<ListItem>().Any(x=>x.Selected == true);
Comments
Post a Comment