我有问题,当我得到属性时,它包含空值,但我分配给它的变量得到了值
这是我如何通过位置的perviouse页面:
<%if(rs.next()) {%>
<td><a href="university.jsp?location=<%=rs.getInt("cs_id")%>"><%out.print((String) (rs.getString("country_state")));%></a></td>
<%}else{ break; } %>
这是未获取参数的页面 请选择您的大学所在州或输入您的大学:
<%
//set the session the each parameter
String locationString = request.getParameter("location");
Integer locationId = Integer.valueOf(locationString);
session.setAttribute("locationId",locationString);
System.out.print(locationString);
System.out.print(request.getAttribute("locationId"));
%>