Hi,

Could someone help me with replacing the JSP code below with iterate tag 
<logic:iterate> ? I have tried various permutations of <logic:iterate> but have been 
unsuccessful.

---------------------------------------------------------------------------
<jsp:useBean id="user" scope="session" type="com.motorola.mms.msqc.beans.UserBean"/>

</TABLE>
<%
        Hashtable hashTable = (Hashtable) user.getSuppliers();
        for (Enumeration e = hashTable.elements(); e.hasMoreElements(); ) 
        {
           SupplierBean supplier = (SupplierBean) e.nextElement();
%>
<TR>
<TD ><FONT face = "Arial">supplier.getCode() %></FONT></TD>
<TD><FONT face = "Arial"><%= supplier.getName() %></FONT></TD></FONT></TD>
<TD><FONT face = "Arial"><%= supplier.getCountryName() %></FONT></TD>
</TR>

<% } %>
</TABLE>
---------------------------------------------------------------------------

I can really use some help. Thanks in advance

-Nimmi

Reply via email to