Re: Validate question - forwarding to action rather than input jsp page

2002-01-31 Thread Ted Husted
Validate the properties that have been set for this non-HTTP request, and return an ActionErrors object that encapsulates any validation errors that have been found. emIf no errors are found, return null or an ActionErrors object with no recorded error messages/em. Emphasis added.

Re: Validate question - forwarding to action rather than input jsp page

2002-01-31 Thread Antony Stace
If the user has entered some valid data in the form and I want to save it and pass this to the input destination specified in the struts-config.xml file how can I save this data and retrive it in the input destination action? On Thu, 31 Jan 2002 08:06:43 -0500 Ted Husted [EMAIL PROTECTED]

Validate question - forwarding to action rather than input jsp page

2002-01-30 Thread Antony Stace
Hi I want to use the validate functionality in a Form. What I want to know is if an non empty ActionErrors object is returned does it always get forwarded to a jsp page? I actually want it rather than getting forwarded to a jsp page to be forwarded to an action. Can I do this somehow using