In one aspx page, there are 8 textboxes and have corresponding ASP required field validators. First four required field validators belong to one ValidationGroup and the rest belongs to another ValidationGroup. There are two Submit and Clear buttons as well. On Clicking the first clear button I am clearing the first four set of textboxes from JavaScript.
Along with that I want to clear the error messages of the required field validators belonging to "group1" ValidationGroup from JavaScript.
So how to clear the validation Error messages corresponding to one ValidationGroup?

Go to the complete details ...