问题描述
action中request.setAttribute("a",a),该action提交后跳转到index.jsp页面,index.jsp页面包含<frame src="organise.jsp" name="leftFrame1" noresize="noresize" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto">现在要在organise.jsp页面接受a的值,请问不知道该怎么做. 问题补充:yuyuypjk 写道
解决方案
<frame src="jsp/hr/organise.jsp?a=${a}" name="leftFrame1" noresize="noresize" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto">在下一个页面获取a.request.getAttribute("a");
解决方案二:
那你就在index.jsp里面获取request.getAttribute("a")。然后通过连接方式传递给下一个页面。或者再次在index.jsp页面request.getAttribute("a")。然后request.setAttribute("a",a);
解决方案三:
index.jsp页面里写个隐藏域,然后organise.jsp去取这个值
解决方案四:
你把action中request.setAttribute("a",a),改成session.setAttribute("a",a)。这样在下一个也面session.getAttribute("a");就可以了