I am looking to control the validation of my form using JavaScript. When a user clicks on a radio button in a list (yes or no), 2-3 rows are displayed. If the user selects "Yes," they must enter input into a textbox in one of those rows. To enforce this, I have set up required field validators. On page load, all validators are disabled and are enabled via JavaScript with ValidatorEnable(control, enable) when needed. However, when a radio button is clicked, the rows become visible and an error message from the validation control appears simultaneously. I want the error message to only show when the submit button is clicked. How can I achieve this?