Results 1 to 5 of 5

Thread: [RESOLVED] Post form to default browser

Threaded View

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2012
    Posts
    4

    Resolved [RESOLVED] Post form to default browser

    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
    Code:
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    
            System.Diagnostics.Process.Start("https://'TextBox1'.'ComboBox1'")
    
    
        End Sub
    (doesnt work like php >.<)
    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&amp;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>
    Last edited by mknjhill; Jan 17th, 2015 at 11:26 PM. Reason: show example

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width