No Validation Messages when Disabling & Enabling ASP.Net Validator in Javascript
Need to validate a form field based on the value of another field in ASP.Net? The .Net Framework provides a javascript function to do just that:
ValidatorEnable(val, enable)
This function takes the validator control (val) and a boolean to determine whether it should be enabled or disabled. The problem with this function is that it triggers the validator to validate itself immediately, showing any validation error messages before the user has submitted the form, which may not always be want you want. The alternative is to set the validator’s enabled property to trigger this validator to validate itself when the user submits the form, and by using the Page_IsValid variable you can test whether the user has triggered a validation or not, then use ValidatorEnable function only after the validation has occurred when the user expects to see validation messages.
Read Article