Meta

<%--页面每隔10秒刷新一次 --%>
<meta http-equiv="Refresh" content="10" />

<%--指定页面使用的字符为国标汉字码--%>
<meta http-equiv="Content-Type" content="text/html;Charset=gb2312" />

<%--禁止浏览器从本地的缓存中读取页面内容--%>
<meta http-equiv="Pragma" content="No-cach" />

<%--设置网页在缓存中无过期时间--%>
<meta http-equiv="Expires" content="0" />

<%--页面停留5秒后自动刷新到Default.aspx页面 --%>
<meta http-equiv="Refresh" content="5;Url=Default.aspx" />

<%--网页过期,存盘的cookie将被删除--%>
<meta http-equiv="Set-Cookie" content="cookievalue=xxx;expires=Wednesday,21-Oct-98 16:14:21 GMT;path=/" />

<%--设置网页在缓存中的过期时间--%>
<%-- <meta http-equiv="Expires" content="Wed,1 Feb 1900 00:00:00 GMT" />--%>
<meta http-equiv="Expires" content="5" />

原文地址:https://www.cnblogs.com/Yellowshorts/p/2867651.html