Thread: Forms in jsp
View Single Post
  #2 (permalink)  
Old 07-05-2007, 05:28 AM
Jack Jack is offline
Senior Member
 
Join Date: Jun 2007
Posts: 130
Jack is on a distinguished road
Look this
Code:
<% for (int i=0; i<state.size(); i++) { %> <option value="<%=state.elementAt(i).toString()%>"><% =state.elementAt(i).toString()%></option> <% } %>
Reply With Quote