Form Posting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I found the UploadFile and UploadValues methods which will allow you to upload file(s) and or form data. But is there a method that can be used to post multipart data (files and form data)?

Todd
 
Todd said:
I found the UploadFile and UploadValues methods which will allow you
to upload file(s) and or form data. But is there a method that can
be used to post multipart data (files and form data)?

UploadFile() actually uses multipart/form-data, though it produces incorrect
requests that may cause some server-side code like PHP to choke up. To post
multipart/form-data with mixed data, you'll have use HttpWebRequest.

Cheers,
 
Back
Top