Pessoal;
Preciso popular meu COMBOBOX com uma ArrayList
<table cellpadding="3" cellspacing="0" border="0">
<tr>
<td width="150" align="right">Assunto:</td>
<td width="665">
<select name="assunto" id="assunto">
<%
for (String nome : output) {
%>
<option value="<%=nome%>"> <%=nome%> </option>
<%
}
%>
</select></td>
</tr>
</table>
Mas não estou conseguindo!!!
Meu ArrayList recebe um Iterator com 40 itens
Desde Ja! Grato