I have 3 buttons in JSP page(next, previous, save). How can I identify which was clicked and where should that particular identification and associated action be within a Struts application?
Created May 8, 2012
alan do The correct struts approach is to use LookupDispatchAction or MappedDispatchAction, which automatically identify which button was clicked and which dispatch method in the action class to call.