Java 版 (精华区)
Q: 如何从JSP页执行浏览器重定向?
A:
有两种方法可以做到这一点。
1.使用内建对象response的方法sendRedirect.
response.sendRedirect("http://chinawebber.com/new/index.html");
2.设置HTTP Header.
response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
String newLocation = "/newpath/index.html";
response.setHeader("Location",newLocation);
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:1.963毫秒