I have a form that is submitted to a details page where I have a button. I put in place an action in my mapping file to link an action to that button which should send the user back to the form and empty it.
I can redirect it correctly but the form still shows the sent values.
<action
...
<forward name="goBack" path="/form.jsp" />
</action>
So, how can I go back to an empty form with action mapping tags ?
Thank you.