I've got a caching problem with the Internet Explorer 6.0 and I want to instruct the browser not to cache the page he's requesting.
Further information: In my page, there's a random token that prevents reloading the site and posting the same information twice or more.
If you now bookmark this page, the browser has to be instructed to refresh the site, everytime he requests it.
Firefox 3.0.5 does this correctly, but IE 6.0 keeps the random token in cache.
I included following meta tags in the affected page:
<meta http-equiv="cache-control" content="no-cache, must-revalidate">
<meta http-equiv="expires" content="0">
<meta http-equiv="pragma" content="no-cache">
Any ideas? Thanks in advance!