The post-validation model can be combined with either field-by-field
or batch error reporting. For server-side validation, the batch model
is preferable to a field-by-field implementation, as the latter
approach has more overhead and is usually slower because each
<form> error requires an additional HTTP
request and response.
For client-side post-validation, either error-reporting model can be
used. The advantage of the field-by-field model is that the cursor
can be directed to the field containing the error, making error
correction easier. The disadvantage is that several errors require
several error messages, and this can be frustrating for the user. The
advantage of the batch approach is that all errors are presented in
one message. The disadvantage is that the cursor
can't easily be directed to the field requiring
correction.