"TDOR" <> wrote:
>I have a welcome.jsp and a projectproperties.jsp.
> When i press a html link on welcome.jsp to href="projectproperties.do"
> im sent to back welcome.jsp again!?
Let's see something from ProjectPropertiesAction. In particular, I bet
you're calling
mapping.findForward( "success" );
when you mean
mapping.getInputForward();
which would send you to the ProjectProperties.jsp
For some reason you've defined "success" within the ProjectProperties
ActionMapping to go back to welcome:
> <forward name="success" path="/welcome.do"/>
Probably success should go to [something like] ProjectPropertiesSuccess.jsp
which will have a message saying whatever the user did, worked okay.
--
Wendy Smoak
|