uploaf files using desktop applications
-
Hey guys, My application performs a backup of some files, add them into a single archive and then uploads them to a one click hoster such as Yousendit.com or sendspace.com. If you open the main page of YouSendIt.com you will a browse file button similar to the ones found on other webpages. I'm am able to upload using the website but i wanted to do so from my application. How do i do this? The website doesnt require any authentication.
-
Hey guys, My application performs a backup of some files, add them into a single archive and then uploads them to a one click hoster such as Yousendit.com or sendspace.com. If you open the main page of YouSendIt.com you will a browse file button similar to the ones found on other webpages. I'm am able to upload using the website but i wanted to do so from my application. How do i do this? The website doesnt require any authentication.
Have you looked at the response a file browse sends? You'll probably have to POST a response. If you're using the .Net Web name space you should be able to use the WebClient.Upload file method. You may need to set various other fields as well before uploading the file.
- Eitsop What we do not understand we do not possess. - Goethe.
-
Have you looked at the response a file browse sends? You'll probably have to POST a response. If you're using the .Net Web name space you should be able to use the WebClient.Upload file method. You may need to set various other fields as well before uploading the file.
- Eitsop What we do not understand we do not possess. - Goethe.
I'm really new to we stuff using .net so it'd be a great help if you could gimme an example. i couldn't find much resources about this.