我想使用隐藏字段将 rs.getString 值从 1st.jsp 传递到 2nd.jsp
<input type="hidden" value="<%=rs.getString(1)%>" name="h">
并在 2nd.jsp String s=request.getParameter("h");
并打印字符串,但它打印 null
我想使用隐藏字段将 rs.getString 值从 1st.jsp 传递到 2nd.jsp
<input type="hidden" value="<%=rs.getString(1)%>" name="h">
并在 2nd.jsp String s=request.getParameter("h");
并打印字符串,但它打印 null