首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

jsp页面跳转的几种模式

2013-08-10 
jsp页面跳转的几种方式public void doPost(HttpServletRequest request,HttpServletResponse response) th

jsp页面跳转的几种方式
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);}

?

热点排行