I have this code to send two Lists for iterating
request.setAttribute("PopulateAgentList", agentList);
request.setAttribute("PopulateAgentContactList",agentContactList);
I can iterate through only one List usijng this code.
<c:forEach var="PopulateAgentList" items="${requestScope['PopulateAgentList']}">
<tr>
<td><c:out value="${PopulateAgentList.name}"/></td>
<td><c:out value="${PopulateAgentList.country}"/></td>
<td>Edinburgh</td>
<td>61</td>
</tr>
</c:forEach>
Can I iterate through the both "PopulateAgentContactList" and "PopulateAgentList".