我在jsp页面中编写了以下代码
<%
String name2 = request.getParameter( "value" );
session.setAttribute( "theName", name2 );
%>
并在jsp页面的正文中
<%= session.getAttribute( "theName" ) %>
所以我能够在jsp页面中看到页面刷新时所选下拉列表的值,但是无法在dropdwon列表中获得相同的值。我已经在单个jsp页面中编写了代码,并且在刷新之后同样的jsp页面被重新加载。我面临的问题是页面刷新值没有在下拉列表中获取,其中我可以在页面正文中看到相同的值。