我有在JSP 1個組合框中填充有值從SQL數據庫上的形式的負載填充組合框
<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>
我已經在其下方的另一個組合框,我希望它被填充的基礎上第一個組合框的選定值... PLZ幫助代碼
Scriptlets已過時,請使用sql-jslt樣式。 stackoverflow.com/questions/7697041/how-to-use-jstl-sql-tag – 2013-02-11 11:14:22