| 首先说明,非常简单,却能大幅提高网页打开速度
好了,直接进入正题:
1.用记事本打开def/default.aspx
最上面几行,找到
<%@ Register TagPrefix="uc1" TagName="serverList" Src="../UserControls/serverList.ascx" %>
<%@ OutputCache Duration="360" Location="ServerAndClient" VaryByParam="none" %>
360是缓存时间,在这段时间里,IIS把网页当作.htm网页看待,360就是360秒即6分钟,网站访问量大的朋友可把360改为3600即一小时,或86400一天 修改后保存退出,看看,是不是网页打开变快了?
|