tags:

views:

269

answers:

1

I'm trying to post a file to a remote server and pass along some hidden values. So within my code I want to create a request to http://www.someotherdomain.com/upload.php and retrieve the xml results from that post. Thanks.

+1  A: 

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

David in Dakota