Web jsp开发学习——实现页面跳转和传参

Web jsp开发学习——实现页面跳转和传参

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // TODO Auto-generated method stub
        /*
         * 不带状态的跳转:response.sendRedirext("index.jsp")
         * 带状态的页面跳转:RequestDispatcher.forward(request,response)
         */        

    }
posted on 2019-04-11 10:56 蔡军帅_ACM 阅读( ...) 评论( ...) 编辑 收藏

猜你喜欢

转载自blog.csdn.net/qq_40875849/article/details/89224133