I've got a RequiredFieldValidator on a contact form.
It works as intended when people click 'Submit', but if they click 'Cancel' or any of the multiple menus on my form, the RequiredFieldValidator cancels the action.
I have already searched and found that I need to set the other controls on my form using CausesValidation = False (using this post), but do I have to do that for every control on my page?
What makes it worse is that the menus on my form are contained in a Master.Page, and they are mostly <DIV>
style CSS buttons, but clicking any of the buttons causes the RequiredFieldValidator to fire and fail the form.
Shouldn't the default be False and I have to turn on which control sets the validation?