Uploading a file

  • Thread starter Thread starter Steven Caliendo
  • Start date Start date
S

Steven Caliendo

Hi,

I've found the control to use to browse through the client's files, but how
do I upload this file to my FTP server ?

Thanks,

Steve
 
With an FTP client?

Actually, an FTP server is just like an HTTP (Web) server. It resides on a
machine and listens for and responds to requests. You could write an FTP
client to use FTP to upload the file if you wanted. Alternatively, you could
use an ASPX page and upload the file via the ASP.Net page (HTTP). Once it
reaches the server, unless the FTP server and HTTP server are on different
boxes, you could certainly save the file to a folder in the FTP server,
regardless of what protocol you used to get it to the server.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top