San,
In order to do this, you simply create a new
java class that extends DispatchAction and has methods named prev(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception .. another named next with the same signature, another named first, etc.
Then in your html code, you would create a link such as:
The action will call a method named for whatever value you put in the parameter "method".
For further information, see the documentation:
http://struts.apache.org/api/org/apache/struts/actions/DispatchAction.html Merrill