After we have finished handling the form in our action, we forward the
request on to the next page using
return new ActionForward(mapping.findForward("success"));
where success is defined in the action in struts-config.xml using
<forward name="success" path="/successpage.jsp"/>
However, after the page has been forwarded, the URL displayed in the web
browser address page is the path to the previous action. Namely
<path to webapplication>/Save.do
even though we are on the successpage.jsp.
If this page is refreshed (using IE 5.5, haven't tried it on other
browsers), it prompts me for whether I want to resubmit the form. However,
there is no form on the successpage.jsp.
So, I am wondering, does anyone know how to prevent this from happening?
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>