【jsp】页面跳转的两种方法
程序员文章站
2022-05-13 23:12:41
...
注:由index.jxp跳转到Failure.jsp
request.getSession().setAttribute("msg", "45654");
方法一:
response.sendRedirect("Failure.jsp");
特点:
(1)不能传值
(2)地址跳转
方法二:
Index.jsp
request.getSession().setAttribute("msg", "45654");
request.getRequestDispatcher("Failure.jsp").forward(request, response);
Failure.jsp
Object o =request.getSession().getAttribute("msg");
out.print(o);
特点:
(1)可以传值
(2)地址不跳转
上一篇: Flex3_Style_Explorer
下一篇: 一次迭代式开发的研究:需求变更的关键步骤