實現簡單下載代碼

Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim remoteUri As String = "http://www.yourname.com/"
        Dim fileName As String = "index.htm"
        Dim myStringWebResource As String = Nothing
        Dim myWebClient As New WebClient
        myStringWebResource = remoteUri + fileName
        myWebClient.DownloadFile(myStringWebResource, "c:/index.htm")
End Sub
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章