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毫秒