SyntaxFix
Write A Post
Hire A Developer
Questions
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