First let me startby saying Ihavnt touched vb since vb6, now on 2012..
I have a simple form that I want to POST to my website.(edit: I already can search from the browser this may be simpler)
it will be a search box basically. It only has a TextBox and a ComboBox and obviously a search button.
Right now I'd like something like this, but it is obviously not working
(doesnt work like php >.<)Code:Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click System.Diagnostics.Process.Start("https://'TextBox1'.'ComboBox1'") End Sub
This does open the default browser, but not passing the variables
Any help would be great.
Geez, seems like its imposible - getting no replys..
heres the form on my site.. maybe that will show you what it is im trying to accomplish
Code:<form onsubmit="PostForm('checkdomain', 'indexform')" id="indexform" action="https://4fd.us/cart.php?a=add&pid=2" method="post"> <input type="hidden" name="command" id="command"> <input type="hidden" name="reg" value="1"><input type="text" name="sld" id="sld" class="styledfield" autocomplete="off" onblur="clearText(this)" onfocus="clearText(this)" value="Your-Name"><select name="tld" id="tld" class="domainselect1"> <option style="margin-top: 5px; padding: 5px;" value="4fd.us">.4fd.us</option><option style="margin-top: 5px; padding: 5px;" value="4fd.in">.4fd.in</option><option style="margin-top: 5px; padding: 5px;" value="4fd.biz">.4fd.biz</option><option style="margin-top: 5px; padding: 5px;" value="4fd.org">.4fd.org</option><option style="margin-top: 5px; padding: 5px;" value="4fd.info">.4fd.info</option></select><input type="submit" name="checkButton" value="Check Availability" class="checkbutton" /></form>





Reply With Quote
