Hi,
iam using
struts & jstl as my framework to develop web pages, i have a action class that will call one DAO & that DAO returns a List<DTO>,in my action class i have like
List<DTO> list=dao.getList();
so here iam getting the generic list as return,so i have to display this list in a
jsp page while looping through the list
can any one please help me how i can iterate it in jsp page using jstl tag.
i know that we have c:forEach,c:Iterator,but not sure how to iterate
java 1.5 list.
Thanks
krish