I have a URI hosted on a server
http://192.161.0.45/MywebPage/Image
Image is the name of the folder i want to upload file on that URI Please help me
I have a URI hosted on a server
http://192.161.0.45/MywebPage/Image
Image is the name of the folder i want to upload file on that URI Please help me
Did you try this approach:
WebClient wc = new WebClient();
wc.UploadFile(uri, pathToLocalFile);
This question is realy close to your: Send a file via HTTP POST with C#