jsp中有多少种重定向到下一页的方法?
除了以下两种方式之外,我们还可以通过多少种方式从一个页面重定向到下一个jsp页面到另一个页面,
RequestDispatcher rd = request.getRequestDispatcher("MyPage.jsp");
rd.forward(request, response);
当
response.sendRedirect("MyPage.jsp");
我转到第二页(MyPage.jsp)时,它必须从服务器端加载为新页面,
in how many way can we redirect to next jsp page from one page to another page apart from following two ways,
RequestDispatcher rd = request.getRequestDispatcher("MyPage.jsp");
rd.forward(request, response);
and
response.sendRedirect("MyPage.jsp");
when i go to second page(MyPage.jsp) it has to load as fresh page from server side,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
RequestDispatcher 和 sendRedirect 是不同的东西。如果你想
则 RequestDispatcher 将无法工作。客户端(浏览器)仍然认为内容来自原始请求。
RequestDispatcher and sendRedirect are different things. If you want to
then RequestDispatcher won't work. The client (browser) still thinks the content comes from the original request.
取自 JGuru:
http://www.jguru.com/faq /view.jsp?EID=376&page=2
Take from JGuru:
http://www.jguru.com/faq/view.jsp?EID=376&page=2
重定向有永久重定向和临时重定向两种类型。
Redirect has two types permanent and temporary redirect.