Home All Groups Group Topic Archive Search About
Author
25 Nov 2006 9:38 AM
reidarT
In a Windows form I use

My.Computer.Network.UploadFile( _
                "File to upload", _
                "ftp://ftp-address" & _
                "/path/filename".mdb", _
                "ftp-username", "ftp-password", True, 5000)

to do this uplaod.
How can I do the same in an aspx-page?
reidarT

Author
25 Nov 2006 11:07 AM
Ken Tucker [MVP]
Hi,

        I would use the file upload control

http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.fileupload.aspx

Ken
--------------------
Show quoteHide quote
"reidarT" <rei***@eivon.no> wrote in message
news:%23e4TJWHEHHA.572@TK2MSFTNGP03.phx.gbl...
> In a Windows form I use
>
> My.Computer.Network.UploadFile( _
>                "File to upload", _
>                "ftp://ftp-address" & _
>                "/path/filename".mdb", _
>                "ftp-username", "ftp-password", True, 5000)
>
> to do this uplaod.
> How can I do the same in an aspx-page?
> reidarT
>
>