页面定时刷新

来源:互联网 发布:js中event.target 编辑:程序博客网 时间:2024/05/16 12:21

页面定时刷新

现在时间是 Sun Dec 02 14:16:45 CST 2007 

<!--refresh.jsp-->
<
%@page contentType="text/html;charset=gb2312" import="java.util.Date"%>
<html>
<head>
<title>页面定时刷新</title>
</head>
<body>
<h2 align="center">页面定时刷新</h2>
<%
response.setHeader("Refresh","5");
Date d=new Date();
out.println("现在时间是");
out.println(d);
%>
</body>
</html> 

原创粉丝点击