Errors get saved in the request. Redirecting gives you a new request - thus you have no errors. Personally, I think it might be nice if these were saved in the session, but there has been (as I recall) quite some effort not to have to create sessions as some folks don't like using them. They're the only thing you have server-side to provide continuity across requests though.
I tend to catch exceptions in my action and let them clue me in on what errors I need to add. The redirect is your exact problem. Do something to stop the redirect and you'll stop your problem. HTH, Eddie On Thu, 3 Mar 2005 18:39:39 +1100, Adam Jenkins <[EMAIL PROTECTED]> wrote: > ----previous email------------ <snip /> > form validation errors everything works fine, however it's just that initial > redirect where everything goes haywire. > > Does anyone know what's going on and/or how to fix? > > Cheers > adam --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
