问题描述
一个aa.jsp页面<html><head></head><body><iframename=iframe1frameborder=2width=1170height=180marginheight=0marginwidth=0scrolling=nosrc="bb.jsp"></iframe></body></html>这里是bb.jsp页面<html><head></head><body><from></form></body></html>bb.jsp提交到一个action里面后然后action里面有request.setAttribute("name",list);response.sendRedirect("bb.jsp");怎么才能在aa.jsp页面得到这个list对象啊
解决方案
解决方案二:
提交了之后让aa.jsp刷新一下,request.getAttribute(“name”)试试
解决方案三:
没看明白什么意思!不知道你说的是不是returnnewActionForward("aa.jsp");
解决方案四:
跳转还转向这个aa页面,用property标签直接就能取。
解决方案五:
引用楼主ganggang1122的帖子:
一个aa.jsp页面<html><head></head><body><iframename=iframe1frameborder=2width=1170height=180marginheight=0marginwidth=0scrolling=nosrc="bb.jsp"></iframe></body></html>这里是bb.jsp页面<html><head></head><body><from></form></body></html>bb.jsp提交到一个action里面后然后action里面有 request.setAttribute("name",list);response.sendRedirect("bb…
request.setAttribute("name",list);改成request.getSession().setAttribute("name",list);在前台页面直接request.getAttribute(“name”);
解决方案六:
引用2楼suifengtingyu的回复:
没看明白什么意思!不知道你说的是不是returnnewActionForward("aa.jsp");
up用了sendRedirect是重定向,request被销掉了,只有session有效
时间: 2024-10-07 07:28:52