ASP.NET: Dynamically enable or disable RequiredFieldValidator based on value of DropDownList

Posted by Jeremy on Stack Overflow See other posts from Stack Overflow or by Jeremy
Published on 2010-03-31T16:50:58Z Indexed on 2010/03/31 16:53 UTC
Read the original article Hit count: 946

I have an ASP.NET form with three text inputs, one each for "Work Phone", "Home Phone" and "Cell Phone". Each of these text inputs has a RequiredFieldValidator associated with it. I also have a DropDownList where the user can select the preferred phone type.

I want to only require the field that is selected in the DropDownList. For example, if the user selects "Work Phone" from the DropDownList, I want to disable the RequiredFieldValidator for "Home Phone" and "Cell Phone", thereby only making the "Work Phone" field required.

I have a method that enables and disables these validators based on the value of the DropDownList, but I cannot figure out when to call it. I want this method to run before the validation takes place on the page. How would I do that?

Let me know if you need any more information. Thanks.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about form-validation