How can I use VB.NET to do an HTTP form submission (method=POST) behind the scenes?
Basically, I need some VB.NET code to accomplish the same thing as clicking submit on the HTML form below would accomplish:
I imagine this could be accomplished with WebClient or HttpWebRequest?
Basically, I need some VB.NET code to accomplish the same thing as clicking submit on the HTML form below would accomplish:
Code:
<form method="post" action="[URL unfurl="true"]http://www.myurl.com/default.aspx?formid=13">[/URL]
<input type="text" name="email" />
<input type="submit" value="Submit" />
</form>
I imagine this could be accomplished with WebClient or HttpWebRequest?