2009年6月9日 星期二

HTML ASP 停用網頁頁面的快取暫存..

停用網頁頁面的快取暫存..
 

1) 在HTML頁面裡加入..

  <HEAD>  
  <META   HTTP-EQUIV="Pragma"   CONTENT="no-cache">  
  <META   HTTP-EQUIV="Cache-Control"   CONTENT="no-cache">  
  <META   HTTP-EQUIV="Expires"   CONTENT="0">  
  </HEAD>  



 

2) 在ASP程式裡頁首處加入..

  Response.Buffer   =   True  
  Response.ExpiresAbsolute   =   Now()   -   1  
  Response.Expires   =   0  
  Response.CacheControl   =   "no-cache"  
  Response.AddHeader   "Pragma",   "No-Cache"

網誌存檔