how do i submit POST data to a PHP script like a basic html login form would do in vb? i have 2 text fields and a command button, i want the command button to submit the contents of textbox1 and 2 to www.mysite.com/login.php
how do i submit POST data to a PHP script like a basic html login form would do in vb? i have 2 text fields and a command button, i want the command button to submit the contents of textbox1 and 2 to www.mysite.com/login.php
I was actually wondering the same... I'm not good at all with the Http/Web classes >.>
http://www.mmowned.com/forums/vb/153...ebo-login.html
Just modify it to your own![]()
Why fill up a signature?
It depends if you need to store cookies or not.
If you don't, you can use the WebClient class (System.Web IIRC) and do your POST in under 7 lines of code.
If you need to use cookies, you'll need to do a full HTTP request/response and handle the cookies manually. (Not sure why WebClient has no cookie support :\)