(04-10-2018, 11:48 AM)joel Wrote: 2. How can I limit the data that the browser caches on the client computer?
Hi Joel,
Only for Q2, I think this is an HTML metadata request. You can try something like:
Quote:Code:<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="01 Jan 2018:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
I got this from https://stackoverflow.com/questions/1341...l-browsers and it is better to read the whole thread.
Mohamed