vote up 1 vote down star

In ASP.NET 2, I've used Field Validators, and RequiredField validators, but I'm unsure of how to handle a case like this.
I have two check boxes on a page, and I need to be sure that at least one of them is set. So, if you look at in binary, it can be 01, 10 or 11, but it can not be 00. My question is, what the best way to do this with checkboxes?

Can the normal ASP Validators handle this, or would I need to create an integer value like mentioned above, hidden somewhere and use a RangeValidator do a test to make sure THAT value is never zero?

flag

4 Answers

vote up 4 vote down check

Worst case you can write a CustomValidator the can do whatever you like. Sounds like what you need is along the lines of:

isValid = Check1.Checked | Check2.Checked

link|flag
Just to point out to others that might read this, you have to do a "arguments.IsValid = (CheckBoxAccident.Checked | CheckBoxTrafficViolation.Checked);", but you had the exact right idea. Thanks man! – LarryF Jan 22 at 20:09
vote up 3 vote down

Use CustomValidator

link|flag
Yep. That did the trick. I would have selected your answer, but Ian had a little more info in his, even though I already understood how you validate two bool values, I wanted others to be able to understand it. But thank you for the link, it came in handy, and was exactly what I needed. – LarryF Jan 22 at 20:11
vote up 3 vote down

This control (written by me) supports CheckBox and CheckBoxList:

http://www.codeproject.com/KB/validation/AtLeastOneOfValidator.aspx

Just add it to visual studio, drop it on your page, and add your checkboxes to it's Controls list. It will work like any other validator control.

link|flag
Thanks Joel.. You know I'm gonna download this and check it out. I was able to do what I needed with a custom validator, but if I had to do even more validation on it, it may not do what I want... – LarryF Jan 22 at 20:14
The advantage of this over a custom validator is that you get client-side validation without writing any javascript. – Joel Coehoorn Jan 22 at 21:13
vote up 1 vote down

Custom validator is the obvious solution. Also, when using a custom validator you should also check for validity on the server side just in case the javascript fails due to some reason.

P.S.: Don't always trust what the client(browser) sends you.

link|flag
I can't seem to make the client side work in this case, only the server side. Because they are asp:CheckBox's I'm validating, I have to omit the ControlToValidate.... – LarryF Jan 22 at 20:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.