I need to use the iterate tag to display elements of 2 arrays but the 
problem is that I don't know if I can really use a nested iteration 
considering the fact that normally, in Java, it should for example be 
handled like this

for (int i=0; i<=list.length-1, i++)
{
  System.out.println(a[i]);
  System.out.println(b[i]);
}

because the value of a[i] and b[i] should be displayed in table cells like

<tr>
  <td>(the value if A)</td>
  <td>(the value if B)</td>
</tr>

od should I simply use a scriptlet for that.

Thanks for help.

Daniel WAMARA

_________________________________________________________________
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to