Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Hey I wrote this code:

 

Imports System.Net

 

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
       Dim wClient As New WebClient

       'address of file to download
       Dim UpdateFile As String = "http://sitewithfile/1.txt"

       'download file and folder to put it
       wClient.DownloadFile(UpdateFile, "C:\1.txt")
   End Sub

 

and when I run the program and click button 1 it gives me and error on this line:

wClient.DownloadFile(UpdateFile, "C:\1.txt")

 

If anyone knows what I did wrong please post

Posted

sorry... this was the error:

 

An unhandled exception of type 'System.Net.WebException' occurred in system.dll

 

Additional information: An exception occurred during a WebClient request.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...