2008/3/19, Dimitris Mouchritsas <[EMAIL PROTECTED]>: > > we're using struts 1.2.4 in our project and I'm trying to implement a > back button for a 3 step registration procedure. The problem is I'd > like to do it without using javascript. I've discovered html:cancel > which works nicely for ...canceling. But I couldn't find anything similar > for the back button. Any ideas?
You need to manage it on the server side. There are many ways to do it, just to mention a pair: 1) the button points to the previous action; 2) implement a history manager that manages the history of called actions and, when called "back" (e.g. with a "history action") you go back in the history. Ciao Antonio