今天在開發時碰到一種方法,就是客戶要求頁面不緩存,查了一下得出以下幾種不讓頁面緩存的辦法
html
只要加在頭部就可以了.
asp教程做法
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
Response.AddHeader "Pragmaache", "No-Cache"
Response.AddHeader "Pragmaache", "No-Cache" 🎜>
php教學做法