I\'m using old fashioned ASP.NET validation (ugh) for a checkout process. I have a checkbox -\"I\'ll call with my credit card details\"-. If checked I need to disable the requir
If you're disabling server side then you can do
button1.CausesValidation = False
in your CheckChangedEvent this is more helpful if you have a lot of validators and need to disable them all.