
WebBrowser control Navigate without using cache
I'm trying to use the Webbrowser control from
Visual Basic to navigate. I
want to navigate without using the cache.
The navigate call looks like this
WebBrowser1.Navigate2 " http://www.*-*-*.com/ ; , navNoReadFromCache +
navNoWriteToCache, Null, Null, Null
where the nav constants are defined as
navNoReadFromCache = 4 ' this is in the documentation
navNoWriteToCache = 8
The control ignores the flags and always reads from the cache. Please
help....
Nilesh Thakker