From: "Titus Barik" <[EMAIL PROTECTED]> > > Let's say I have two collections, A, and B. Is there a way to iterate > over multiple collections with something like logic:iterate? >
If you know they're the same size and in the same order, (should be the case with List,) how about iterating over one with <c:forEach varStatus="status"> and using ${status.count} to address the second List. Can you change the design? If the items in both collections really belong together, try to store them together so you don't have to jump through hoops like this. -- Wendy Smoak --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]