I need to write a process to download an html file locally in my vb.net web application. I am currently using webClient.DownloadFile:
Dim myWebClient As New System.Net.WebClient
myWebClient.DownloadFile("http://archive.ncsa.illinois.edu/primer.html", _
"C:\test.html")
Is there a built-in way to do this with the Save As window so that the user can select the location to which they would like to save the file? Or do I need to write my own?
source
share