In an ASP.NET WebForm, can I associate a validator to a DropDownList and have the client validation triggered only when a button is pressed, but not when I change the selection in the DropDownList? As far as I can see, when ControlToValidate is set, any selection change in the list triggers the validation.
I tried setting different ValidationGroup values for the DropDownList and the validator, I also set CausesValidation='false' for the DropDownList, with no success. In both cases, the validation is still triggered by the list.