我正在一个应用程序中工作,我有一个选择框,我从数据库中获取值。现在我必须选择一个将转到数据库的值,它会去,但当我从页面登出时价值不存在怎么解决这个?当我登录jsp页面时,我正在jsp页面中获取所选值。正如我发布我的代码
motivator = existingProfile.get(i).getMotivator();
<th>What would be the single biggest motivator in a potential new opportunity?</th>
<td>
<select id="motivator" name="motivator" multiple="multiple">
<% while(rs8.next()){
motivatorString = rs8.getString("motivators");
System.out.println("motivatorString :"+motivator);
%>
<option value ="<%=motivatorString %>" ><%=motivatorString %> </option>
<%} %>
</select>
</td>
此激励因素保持所选值,我希望它与选择框中的其他值一起选择