|
Use the UploadFile method to upload files, and specify the source file location and target directory location as strings or URIs, and specify the user name and password. This example uploads the Order.txt file to http://www.cohowinery.com/uploads.aspx, providing both the username anonymous and an empty password.
My.Computer.Network.UploadFile (_
"C:\My Documents\Order.txt", _
"http://www.cohowinery.com/upload.aspx", "anonymous", "") |
|