I have asp.net form having 4 check boxes. not check box list. these 4 check boxes having the ValidationGroup property with same name say "chkValied". I have added Custom Validator there. now want to check at least on check box should be check out of these. what to do ?
check box validation for atleast one check box should cheked in asp.net
5k Views Asked by Red Swan At
3
There are 3 best solutions below
0

If you are using custom validator such thing could be achieved with an or-statement:
if (chkBox1.Checked || chkBox2.Checked || chkBox3.Checked)
{
// At least 1 checkbox was checked.
}
This applies to all languages (although || is not universal all languages has a representation of it). In JavaScript you'd want .Value instead of .Checked.
You can use CustomValidator to validate input at client-side or server-side code.
aspx markup
.cs (code-behind)
JavaScript code