Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone have a working example using HttpWebRequest in C# to submit a file from the local drive to a multipart/form-data web form?

share|improve this question

1 Answer

it is WAY easier to do this with WebClient

string url = "http://myserver/myapp/upload.aspx";
string file = "c:\\files\\test.jpg";
WebClient wc = new WebClient();
wc.UploadFile(url,"post",file);

If it needs to be httpwebrequest I can put something together for you (it is possible), but it will be more like 50 lines then 5

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.