I installed demo activeX on my web application which at the end try to upload file on server using PUT method. I'm using Windows 7.
There I get an error 404 File Not Found.
Can you please let me know what I should fix to make this working.
I installed demo activeX on my web application which at the end try to upload file on server using PUT method. I'm using Windows 7.
There I get an error 404 File Not Found.
Can you please let me know what I should fix to make this working.
The PUT
method will not automatically upload a file for you.
You need to write your web application to accept the PUT
operation and save the file you are sending.
Here is one tutorial on uploading files. There are many around.
Also, see the FileUpload
and HtmlInputFile
classes.