tags:

views:

133

answers:

1

Hi All

I Want Upload some Files into a Website Host in C#.net Windows Application.what is a Best way To Upload file in Windows Application?

+2  A: 

That depends on your server. If it's yours you can make it listen to post requests and upload files through there. If it's not yours there's probably ftp installed, so you can try that.

See here for ftp uploading: http://www.vcskicks.com/csharp_ftp_upload.php and here for using http post requests: http://en.csharp-online.net/HTTP_Post

Jouke van der Maas