Hi Dw
I'm trying to create a program that I will use to browse through websites when I'm not connected to the internet and I can download the single page using the code I provide bellow but what I want is to download the entire website with it contents e.g. pics,css,ect so that when I'm offline I can still browse the website. The code I'm using require me to add a name in which the file will be served to my drive so this will course errors because I may not name it the same way as it was on the original I want to also scan if a website contains any hypelinks and if it does I want to download it contents so that it will run the same way when I'm accessing it over the internet when I'm offline. The code that I'm using is:
Dim myWebClient As New System.Net.WebClient
Dim myFile2SaveTo As String = "C:\0000\index.html"
myWebClient.DownloadFile("http://example.com/", myFile2SaveTo)