So there is not much benefit from using a client side validation on the various txt fields. Better to use the onSubmit within the form tag and set all your validations in the following order:
topmost - Validate Form
field specific validation
field specific validation
field specific validation
last behavior - Show Validation Error
Is this correct?


