Hi, I am currently writing a Struts app that is a wizard like form that is similar to the flow below: setup.jsp -> timezone.jsp -> some_other_page.jsp -> finish.jsp All views store their data in the same ActionForm and post to the same Action class. The Action class merely sends the user on to the appropriate page upon submission and when it gets to the ends does the calls to the business stuff. I am trying to create the flow so the user can go back by tacking on a query string to the end of the Action string (i.e. submit.do?action=forward or submit.do?action=previous). I guess I am at a bit of a loss as to how to do this, or if this is even an effective way of doing this. Any suggestions would be much appreciated. Also any links to appropriate documentation would be cool. Thanks. Glenn Kidd

