方案一
1.在<head></head>中利用meta标签来定义,页面每隔30s刷新一次,代码如下:
<meta http-equiv="refresh" content="30" />
方案二
在<head></head>中利用Response.AddHeader方法来定义,10s刷新一次,代码如下:
<%Response.AddHeader("Refresh", "10"); %>
页面定时刷新
原文:http://www.cnblogs.com/zhourourou/p/5210070.html