caching - VB6 : Navigating to a webpage without reading files from temporary internet files folder -


I am using the VB6 web browser control every time I navigate to a page (web browser. Navigate) I want to load the page freshly from the server instead of reading it from the cache and temporary internet file folder. I posted a question that did not receive the correct answer. Now I need to know that any code or API is available, which is available to open webbrovers without reading files from temporary Internet files and avoiding reading cache. So please help me on this.

When you try to open Internet Explorer (or to open), or if you are using VB6 If you choose to use the packaged controls, you can force the browser to rely on the pages that are endlessly cached, without any 'random' query string like:

  www .mysite .com? A = 8267889457   
  String webAddress = "www.mywebaddress.com?a=" & amp; IT (RND (1) * 1000000)   

This should start the browser directly by requesting data from the server.

In addition, you can include:


Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -