I am successfully retrieving the data from webpage by using
Dim webClient As New System.Net.WebClient
Dim result As String = webClient.DownloadString("http://example.org")
MsgBox(result)
However, I need to make it updating, like every 5 minutes it should retrieve the data again. What is the correct approach should be ? Thanks.