/*connection query here*/
<select>
<%while(rs.next())
{%>
<option><%= rs.getString("column_1")%></option>
<%}%>
</select>
<select>
<%while(rs.next())
{%>
<option><%= rs.getString("column_2")%></option>
<%}%>
</select>
我想在同一个jsp中将两个不同的列数据显示为两个不同的下拉列表