upload file
-
Hey guys, i have site online where my registered users can upload their files. I want to make a desktop application that lets my users upload their files from the application itself. I will be uploading my files using the regular HTTP upload. DO you have any information on where I could get started. I have never made something like this.
-
Hey guys, i have site online where my registered users can upload their files. I want to make a desktop application that lets my users upload their files from the application itself. I will be uploading my files using the regular HTTP upload. DO you have any information on where I could get started. I have never made something like this.
Maybe this will help :http://www.codeproject.com/cs/webservices/DimeBufferedUpload.asp[^]
-
Maybe this will help :http://www.codeproject.com/cs/webservices/DimeBufferedUpload.asp[^]
hey, I did a bit research online and found that I'd have to first do an HTTP POST and authenticate myself and then save the logon information as a cookie. Once that is done, I'd have transmit the file in chunks. Is that right? Is there another way? Would I have to do all my HTTP POST and GET through the
System.Net.WebClient
namespace?