I've got a VB6 app with a web browser control in it. When my app loads it loads up a url in the browser, this is a fresh up to date copy.
If I then navigate to another page in code, and back to the original page it uses a copy from the cache. If I open up a normal IE6 broswer and point at the page the up to date page is retrieved and the cache updated. Next time the browser in my app is navigated it picks up this new cache copy.
I've tried doing navigate and navigate2, and put a flag of &H4 and a flag of &H8 - one of which is supposed to stop caching, but neither work. The beforenavigate2 event always reports flags as zero.
As a work around i've put in a extra parameter into the url to make it so all navigations within a single day are unique ("&rand=" & timer). But it's not really what I wanted to have to do.