Click here to Skip to main content
15,868,141 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear all,
I want to turn off firefox caching, i have try :
XML
<meta http-equiv="expires" content="0">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">


and
VB
Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1))
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.Cache.SetNoStore()


but it does not work, please help me!
Thanks!
Posted

Try this:

ASP
<META HTTP-EQUIV="Cache-Control" CONTENT="max-age=0">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META http-equiv="expires" content="0">
<META HTTP-EQUIV="Expires" CONTENT="Tue, 01 Jan 1980 1:00:00 GMT">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
 
Share this answer
 
Comments
NguyenVanDuc 11-Apr-12 0:24am    
It does not work :(
1. Opened up the FireFox browser
2. Typed about:config in the address bar
3. Typed ‘cache’ in the search bar, and looked for: network.http.use-cache.
4. Double clicked network.http.use-cache in order to set it to false. (BTW, Double clicking it again will set it to true and re-enable the cache)





Happy coding :)
 
Share this answer
 
v4
Comments
NguyenVanDuc 11-Apr-12 0:26am    
How can i cofig it? in VB code or Aspx ? or config directly in Fire fox, i want to turn off in server side. Please make me clearly!
vishal_h 7-Feb-14 0:17am    
Thanks guy but i am also searching for the same but not get solution and above code is working fine for IE but not for Firefox.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900