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
You can disable the validators server-side:
MyFieldValidator.Enabled = MyCheckBox.Checked Page.Validate() If Page.IsValid Then 'stuff end if