Hi all,
I'm trying to implement the PRG (post-redirect-get) pattern which was
published in theserverside.
The magic key is to use redirect="true" in the local forward like this:
<forward name="showParentForm" path="/DrawingUpdate.rnd" redirect="true"/>
it works very nice, no more double submit problem when user press Back and
Forward button. But the problem is I lost my ActionMessage after the
redirect. I need the ActionMessage to display success message. Is there any
way beside using session to store those message? cause if I have to use
session then the whole ActionMessage thing in my application will be useless
:(
Thanks for the help
Best regards.