If I understand you right, you would like to have access to the same information on 
the next form as well. If this is what you want to do, you should define the action in 
the struts-config.xml file with the attribute scope="session". This gives you the 
chance to have access to a bean during the entire lifetime of a session.

for example:

<action path="/yourpath"
        type="yourAction"
        name="yourForm"
        scope="session"
        input="yourJSP1.jsp">
        <forward name="success" path="/yourJSP2.jsp"/>
</action>

Cheers, Marcel
 

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 23, 2001 4:57 PM
To: [EMAIL PROTECTED]
Subject: html:link forward question


Hi,

Can anyone please tell me how to achieve forwarding of one page to another 
as well as have the information in the form submitted to the form bean in 
the process.  Is this this possible or do I just have the wrong idea.

Please help.

Thank you for your speedy response.

Lisa

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

Reply via email to