我在jsp中有1个组合框,它在加载表单时填充了来自sql db的值
<td width="150">
<%
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection cn = DriverManager.getConnection("jdbc:odbc:mydsn");;
Statement s = cn.createStatement();
ResultSet re = s.executeQuery("select distinct From1 from station");
%>
<select>
<%
while (re.next()) {
String un = re.getString("From1");
%>
<option value="<%= un%>"><%= un%></option>
<%
}
%>
</select>
</td>
我在它下面有另一个组合框,我希望根据第一个组合框的选定值来填充它...请帮助代码