views:

31

answers:

1

Im new to silverlight and i want the procedure of how to upload file on ftp in silverlight 4 application, Im using C#. So far i know that there are two procedure of doing this one is web client object and other is HttpWebRequest but i want to know if it is possible to upload a file to ftp server and how to do this?

A: 

FTP is not supported in Silverlight however you could try to upload via http.

Check: http://stackoverflow.com/questions/1127981/silverlight-ftp-upload

Chris