Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my .aspx page, I have a dropdownlist and a textbox.

The textbox has to be validated depending on the selection in the dropdownlist.

I have only used the validation control on the .aspx page itself (not codebehind).

How can I dynamically change the type of validation on the textbox? programatically?

share|improve this question
Please rephrase your question in the form of a question – Mike Robinson Apr 7 '09 at 21:15

1 Answer

Although it's not the most efficient way (because it requires an extra postback), you can set AutoPostBack='true' on your dropdown list, then when you respond to the SelectedIndexChanged event for your dropdownlist, your can modify (enable / disable, etc.) your validation for the textbox.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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