I am developing a website. My co-workers developed an App to read the site.
But the problem is the App has cache that will remember the front-end page.
Unless the user clear the cache of app,otherwise no matter how I modify the page, the page style and element won't change. May I control the cache by using javascript or html?
I tried these:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Expires" content="0" />
and
<link rel="stylesheet" href="../css/files/style.css?v=1.02">
both of them don't work.