JSP復習(part 4)
3.5.2 重定向網頁
使用response對象中的sendRedirect()方法實現一個重定向到另一個頁面。
例如: response.sendRedirect(“”login_ok.jsp“”);
3.5.3頁面定時刷新或自動跳轉
采用response對象的setHeader方法,實現頁面的定時跳轉或定時自刷新。
(1)response.setHeader("refresh","5");//每隔五秒,頁面自動刷新一次
(2)response.setHeader("refresh","10;URL=http:www.sohu.com“‘);
代碼練習
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>response內置對象</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<%
//使用response對象的setHeader方法設置為每隔一秒刷新一次頁面
response.setHeader("refresh","1");
//獲取當前時間
Date myDate = new Date();
%>
<h3>當前時間為:</h3>
<%
//將當前時間進行顯示
out.println(myDate.toLocaleString());
%>
</body>
</html>
JSP復習(part 4)