V
Vjay77
I have a timer which triggers AxWebBrowser1 every 5 minutes to visit
one of my websites.
What I find out later in my websites logs, was, that it really visited
my website only for the first time.
Second time it went to the site and every other time, it was reloaded
probably from the cache, hdd or from somewhere... I am just guessing.
This is something I couldn't resolve and its killing me as I am
spending too much time with this little thing.
I tried to use refresh and update as you see... but these wouldn't
work.
I even tried to go to blank page first and then to my website...still
caching ...
If I restart the whole application it again works for a first time it
visits the page... drives me mad
This is my code:
Private Sub Timer1_Tick(ByVal sender As Object,
ByVal e As System.EventArgs) Handles Timer1.Tick
Label1.Text = DateTime.Now
AxWebBrowser1.Navigate(TextBox1.Text)
AxWebBrowser1.Refresh()
AxWebBrowser1.Update()
End Sub
Every help much appreciated.
Vjay
one of my websites.
What I find out later in my websites logs, was, that it really visited
my website only for the first time.
Second time it went to the site and every other time, it was reloaded
probably from the cache, hdd or from somewhere... I am just guessing.
This is something I couldn't resolve and its killing me as I am
spending too much time with this little thing.
I tried to use refresh and update as you see... but these wouldn't
work.
I even tried to go to blank page first and then to my website...still
caching ...
If I restart the whole application it again works for a first time it
visits the page... drives me mad
This is my code:
Private Sub Timer1_Tick(ByVal sender As Object,
ByVal e As System.EventArgs) Handles Timer1.Tick
Label1.Text = DateTime.Now
AxWebBrowser1.Navigate(TextBox1.Text)
AxWebBrowser1.Refresh()
AxWebBrowser1.Update()
End Sub
Every help much appreciated.
Vjay