Can be solved a couple of different ways
populating a hidden form field and testing the value of the hidden form field OR
switching on DispatchAction (one for save, one for submit, one for create)
Take a look at Ted Husted's response to the question at
http://www.jguru.com/faq/view.jsp?EID=897290

Martin-

----- Original Message ----- From: "Letícia Álvares Barbalho" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <user@struts.apache.org>
Sent: Thursday, August 25, 2005 1:05 PM
Subject: Forwarding to the same page - newbie question


Hello everyone. I know it's a totally noob question, but I gotta ask.

I have an action that is called from page.jsp. After it's executed, it is
forwarded to the same page: page.jsp. But the problem is that it reloads the
same page with all the data that was there before. And I wanna reload it
blank, with nothing. Is there a struts way to do it? 'Cause I'd rather not
use JS...

is there something wrong with this:

<action
path="/AddColecao"
type="auge.action.AddColecaoAction"
name="addColecaoForm"
scope="request"
validate="true"
input="/pages/colecao.jsp">
<forward name="success" path="/pages/colecao.jsp"/>
<forward name="error" path="/pages/erro.jsp"/>
</action>

as you see, the input and the "success" forward, which I call, are the same.

--

Letícia Álvares Barbalho
[EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to