web-dev-qa-db-ja.com

URLコードVB.NETからファイルをダウンロード

コードvb.netでURLからファイルをダウンロードする方法について質問したいのですが?
example: Example Link ファイルをダウンロードする前に、ユーザー[〜#〜] must [〜#〜]ユーザー名とパスワードを入力しますか?どうやってやるの?参照やリンクはありますか?ありがとう!

使用する System.Net.WebClient.DownloadFile

Dim remoteUri As String = "http://belajar123.com/materi.Zip"
Dim fileName As String = "materi.Zip"
Dim password As String = "..."
Dim username As String = "..."

Using client as new WebClient()

    client.Credentials = New NetworkCredential(username, password)
    client.DownloadFile(remoteUri, fileName)
End Using
9
Claudius