Hi,
Is it possible to do with JSTL something like this: 
(Note: size of list1 and list2 are equal)
List list1 = getList1();
List list2 = getList2();
for(int i=0; i<list1.size(); i++)
{
    MyClass1 x1 = (MyClass1)list1.get( i );
    MyClass2 x2 = (MyClass2)list2.get( i );
}
----------------------------------------------------------------------------
I can iterate with JSTL with forEach for either of the lists separately but I 
need to display both of them in the same loop. How can I do that?


                        
---------------------------------
Sneak preview the  all-new Yahoo.com. It's not radically different. Just 
radically better. 

Reply via email to