Is it possible to send HTTP POST with some form data with System.Net.WebClient?
If not, is there another library like WebClient that can do HTTP POST? I know I can u
WebClient doesn't have a direct support for form data, but you can send a HTTP post by using the UploadString method:
WebClient
Using client as new WebClient result = client.UploadString(someurl, "param1=somevalue¶m2=othervalue") End Using