Tagged Questions
2
votes
4answers
4k views
Howto deactivate caching inside a jsp page
I understand there is a HTTP response header directive to disable page caching:
Cache-Control:no-cache
I can modify the header by "hand":
<%response.addHeader("Cache-Control","no-cache");%>
...
1
vote
1answer
59 views
How to force clear user's browser all the time?
We're working on a website. Our client want to check the website daily, but they're facing a problem. Whenever we make a change on the website, they have to clear their browser cache.
So I added the ...