I'm not even sure how to ask this... I have an ASP page and I want the user to be able to enter information in two standard input boxes and then click a link (not a button). It will pass the information to a specific URL. For instance:
http://yourserver/process.asp?input1=whatever&input2=somethingelseSo, if I have the two input boxes:
<input name="input1"> <input name="input2">
What do I do to pass that information to a URL?
Start Free Trial