i have these statements in the java servlet class:
request.setAttribute("searchresults",searchResults);
request.getRequestDispatcher("/searchStaff.jsp").forward(request, response);
return;
the searchResults is the ArrayList object.
i would very much like to know how i can retrieve this object in a JSP page and iterate through this ArrayList using JSTL. I know i will need to use the <c:forEach> tag but i don't know what i should include in the body of this tag.
thanks a lot~~~~~