冰楓逸范
          Victory won’t come to me unless I go to it. 勝利是不會向我走來的,我必須自己走向勝利。
          在JSP中,跳轉頁面有兩種方式:
          1.forward跳轉:
          <jsp:forward?page="跳轉頁面地址"?/>
          2.response跳轉:
          response.sendRedirect("跳轉頁面地址");

          兩種跳轉的區別如下:

          1.forward跳轉:
          ??a.服務器端跳轉,地址欄不改變;
          ??b.執行到跳轉語句后馬上無條件跳轉,之后的代碼不再執行(跳轉之前一定要釋放全部資源);
          ??c.request設置的屬性在跳轉后的頁面仍可以使用;
          ??d.使用<jsp:param?name="參數名"?value="參數值"?/>傳遞參數。

          2.response跳轉:
          ??a.客戶端跳轉,地址欄改變;
          ??b.所有代碼執行完畢后跳轉;
          ??c.跳轉后的頁面不能使用上一個頁面的request屬性;
          ??d.使用地址重寫傳遞參數(response.sendRedirect("URL?參數名=參數值"))。

          示例:?? forward.jsp
          ?1?<%@?page?contentType?=?"text/html;?charset?=?gb2312"%>
          ?2?<%
          ?3?????request.setCharacterEncoding("gb2312");
          ?4?%>
          ?5?
          ?6?<html>
          ?7?????<head>
          ?8?????????<title>?Forward.jsp?</title>
          ?9?????</head>
          10?
          11?????<body>
          12?????????<jsp:forward?page?=?"jump.jsp"?/>
          13?????</body>
          14?</html>
          ???
          ?????????response.jsp
          ?1?<%@?page?contentType?=?"text/html;?charset?=?gb2312"%>
          ?2?<%
          ?3?????request.setCharacterEncoding("gb2312");
          ?4?%>
          ?5?
          ?6?<html>
          ?7?????<head>
          ?8?????????<title>?跳轉頁面?</title>
          ?9?????</head>
          10?
          11?????<body>
          12?????<%
          13?????????response.sendRedirect("jump.jsp");
          14?????%>
          15?????</body>
          16?</html>

          ????????jump.jsp
          1?<html>
          2?????<head>
          3?????????<title>?跳轉頁面?</title>
          4?????</head>
          5?<body>
          6?????<h1>?Hello?Word!!!?</h1>
          7?</body>
          8?</html>

          可以發現使用forward跳轉,地址欄的url沒變;而使用response.sendRedirect()地址欄的url有變.
          posted on 2008-04-06 13:18 冰楓逸范 閱讀(993) 評論(0)  編輯  收藏 所屬分類: JSP/Servlet
          主站蜘蛛池模板: 托里县| 图片| 丹棱县| 沛县| 天气| 云梦县| 肇源县| 东乡族自治县| 丰原市| 贵溪市| 灵宝市| 沙湾县| 鄂伦春自治旗| 邹平县| 沐川县| 扶绥县| 临湘市| 金溪县| 莲花县| 广饶县| 盐城市| 杨浦区| 收藏| 金川县| 贵定县| 明星| 色达县| 芜湖市| 融水| 舟曲县| 安徽省| 陕西省| 孙吴县| 台中县| 高邮市| 惠来县| 左贡县| 长春市| 塔河县| 永善县| 新竹市|