how transfer data between Actions?
for example
public class FormulaEditAction extends DispatchAction {
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse
response) {
return mapping.findForward("showFormula");
}
}
How to transfer for example request from one Action in another
public class ShowFormulaAction extends Action {
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse
response) {
return mapping.findForward("showFormula");
}
}
--
View this message in context:
http://www.nabble.com/How-to-transfer-data-between-Actions--tf4684063.html#a13384779
Sent from the Struts - Dev mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]