<select name="supplier">
<%
try {
Connection conn = JavaConnect.ConnectDb();
Statement stmt = conn.createStatement();
ResultSet rs;
rs = stmt.executeQuery("SELECT name FROM supplier ");
while(rs.next()) {
out.write("<option value ="+rs.getString("name")+"</option>");
}
rs.close();
stmt.close();
}
catch(Exception e) {
System.err.print("Sorry");
}
%>
</select>
我正在尝试在 jsp 页面中填充组合框并尝试了上述方法,但我得到了一个空的组合框。我研究了其他答案,但其中大多数似乎都不起作用。