How to forward from Array List to Jsp in Struts
ActionServlet class?
Answer Posted / venkateshwararao
In action class take request object and add ArrayList object
to request by using request.setAttribute("arraylist"al);
and forward to jsp using ActionForward
af=mapping.findForward("name");
In the jsp we have retrieve by using core tag library or
struts tag library.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain about the library tag?
What is the difference between validation.xml and validator-rules.xml files in struts validation framework?
Can we use struts and spring together?
in struts how to use hibernate with struts>
Is Struts Framework part of J2EE?
Why was reload removed from struts (since 1.1)?
What is an interceptor stack?
Can we have multiple struts config files ?
Which tag is used to declare constants in struts xml?
What is the purpose of @validations annotation?
Explain the difference between plain-validator and field-validator in struts?
What is difference between actionform and dynaactionform?
How can duplicate form submission be handled in struts 2?
What are the 5 constants of action interface?
What is request processor and how does it relates to action mapping?