Posted By:
d_c
Posted On:
Thursday, January 29, 2004 10:20 AM
I am using struts 1.1 not 1.0, but I think the general idea is the same.
I have separate action for each page in the wizard. At first, I am create a form in the session for each wizard page in the prepAction.
prepAction
action1
action2
action3
action4
action1,2,3,4 in struts-config.xml has 'next,' 'back,' and 'cancel' forwards. next forwards to the next action, back takes to the previous action. cancel takes the user to the page where the action was originally called.
I hope this is what you are asking for