Upload a file in a web server with a WinForm

  • Thread starter Thread starter sebastien1101
  • Start date Start date
S

sebastien1101

Hi,

I need to find a solution to upload a file in a internet server with a
winform ?

How can i do this ?
 
sebastien1101 said:
I need to find a solution to upload a file in a internet server with a
winform ?

'WebClient.UploadFile'.

If the server supports FTP:

..NET 1.*:

Accessing FTP servers in .NET applications
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=ftp&lang=en>

..NET 2.0:

..NET Framework Class Library -- 'FtpWebRequest' Class
<URL:http://msdn2.microsoft.com/en-US/library/system.net.ftpwebrequest.aspx>

An FTP client library for .NET 2.0
<URL:http://www.codeproject.com/vb/net/FtpClient.asp>
 
Back
Top