Thank you very much Paul. It was a big time save for me.
Regards
Hakan
Paul Benedict <[EMAIL PROTECTED]>
20/01/2006 04:07 PM
Please respond to
"Struts Users Mailing List"
To
Struts Users Mailing List
cc
Subject
Re: error messages doesn't appear i
Hakan,
You need to store the error messages in the request or session after you
retrieve them:
ActionErrors errors = form.validate();
if ((errors != null) && !errors.isEmpty()) {
saveErrors(request, errors);
return mapping.getInputForward();
}
Paul
2 matches
Mail list logo