How to solve caching issues with FireFox?
Caching is handled differently in different bowsers.
With Internet Explorer "no-cache" value of "Cache-Control" header is sufficient to disable
browsers from caching web pages.
response.setHeader("Cache-Control", "no-cache");
But it is not sufficient to prevent the FireFox browser from caching web pages. You need different value for the same header to prevent caching.
response.setHeader("Cache-Control", "no-store");
0 Comments:
Post a Comment
<< Home