IIS會按文件地址及參數將文件緩存到客戶端,以便再次訪問該內容時速度更快。如果要取消這種機制則需要禁止緩存文件。
一、編程方式
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" %>