我想将name
的值作为组合框传递给文本。我从数据库中获得了name
的价值。
{
String name=resultset.getString(1);
}
感谢。
答案 0 :(得分:0)
这是Why you should use JSTL than JSP scriptlets。您应该开始使用JSTL
。
我在这里给了你scriptlet代码。您可以在select tag
之间迭代结果集,并为选项设置值。
<select name="username">
<% while(resultset.next()){ %>
<option value="<%=resultset.getString(1)%>"><%=resultset.getString(1)%></option>
<% } %>
</select>