I need to show data from a form object when a page loads. I call the action execute method which loads and set the data in form object. That action execute method sets "success" in
mapping.findForward("success");
and then it goes to the following forward.
<forward name="success" path="/pages/showDetails.jsp"/>
This opens up the showDetails jsp. But I am unable to find that how do I pass the form object to this jsp and show them on the jsp page. I have to use struts tag library and no JSTL.
Please help.