当前位置: 代码迷 >> JavaScript >> jsp页面跳转的几种模式
  详细解决方案

jsp页面跳转的几种模式

热度:39   发布时间:2013-08-10 21:14:06.0
jsp页面跳转的几种方式

?????? 是在服务器端起作用,当使用forward()时,Servlet engine传递HTTP请求从当前的Servlet or JSP到另外一个Servlet,JSP 或普通HTML文件,也即你的form提交至a.jsp,在a.jsp用到了forward()重定向至b.jsp,此时form提交的所有信息在 b.jsp都可以获得,参数自动传递. 但forward()无法重定向至有frame的jsp文件,可以重定向至有frame的html文件,同时forward()无法在后面带参数传递,比如servlet?name=frank,这样不行,可以程序内通过response.setAttribute("name",name)来传至下一个页面。

重定向后浏览器地址栏URL不变。

?

public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException

{

  response.setContentType("text/html; charset=gb2312");

  ServletContext sc = getServletContext();

  RequestDispatcher rd = null;

  rd = sc.getRequestDispatcher("/index.jsp"); //定向的页面

  rd.forward(request, response);

}

?

  相关解决方案