OK so here is my problem

I am using vb .net 2005 and I have this code so far
[Highlight=VB]
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim webclient As New System.Net.WebClient

webclient.UploadFile("ftp://mylogin:[email protected]", "C:/1.jpg")
End Sub
End Class[
/VBCODE]


there seems to be a problem with the URI when i run this script However I don't know why this would be a problem the file location is correct and the ftp info works fine.

plz help