[tip] jsp的两种跳转方式
来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 07:22 点击:次
//注意:不推荐中文文件名如"目的页面.jsp(SUN企业级应用的首选)",此处仅为了教程需要而使用
// 带session,不带request的跳转responst.sendRedirect("目的页面.jsp(SUN企业级应用的首选)");
// 带session,带request的跳转// 需要在request中添加参数: request.setAttribute("myVar", "value");// 在目的页面中获取参数: String myVar = request.getAttribute("myVar") == null ? "" : (String)request.getAttribute("myVar");request.getRequestDispatcher("目的页面.jsp(SUN企业级应用的首选)").forward(request, response);
相关新闻>>
- 发表评论
-
- 最新评论 更多>>