How do I create a "pass" form / POST file to a remote server in .NET?

I am trying to send a file to a remote server and pass some hidden values. So in my code, I want to create a request for http://www.someotherdomain.com/upload.php and get the xml results from this post. Thank.

0


source to share


1 answer


You would use the HttpWebRequest class . Some code examples can be found at http://www.netomatix.com/httppostdata.aspx



+1


source







All Articles