iis會按文件地址及參數(shù)將文件緩存到客戶端,以便再次訪問該內(nèi)容時速度更快。如果要取消這種機制則需要禁止緩存文件。
一、編程方式
response.buffer = true;
response.expiresabsolute = datetime.now.adddays(-1);
response.cache.setexpires(datetime.now.adddays(-1));
response.expires = 0;
response.cachecontrol = no-cache;
二、代碼方式
代碼如下:
<%@ outputcache duration=1 varybyparam=none location=none %>
更多信息請查看IT技術(shù)專欄