Re: Redirect after Post and ActionMessage

2005-06-12 Thread Michael Jouravlev
You may want to take a look at the Struts Dialogs: http://struts.sourceforge.net/strutsdialogs/ It is a new development within Struts Application project. It was me who wrote the article on TSS, and I am gradually making these ideas into usable components. DialogAction is an action which uses POST

Re: Redirect after Post and ActionMessage

2005-06-12 Thread Hubert Rabago
An option is to add the action message as a redirect parameter. This was supported in an earlier ActionRedirect version I was using in my Struts projects (http://www.rabago.net/struts/redirect/), but it was decided that the version that went into Struts core not include this feature. Hubert On 6

Redirect after Post and ActionMessage

2005-06-12 Thread Yuniar Setiawan
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: it works very nice, no more double submit problem when user press Back and Forward button. But the problem is I los