Tagged Questions
3
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");%>
...