how to design a FTP application?
how to design a FTP application fo uploading a file in c#.net language,and asp.net?with example and code?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sivaraman DhamodaranPosted Dec 21, 2012, 5:55 AM
WebClient wc= new WebClient();
wc.UploadFile("http://www.uploadsite.com/folder/uploadthis.ext", "c:\localcopy\uploadthis.ext")
Here,
c:\localcopy\uploadthis.ext is the local copy.