I'm looking to have a page with an input box and a link. When someone
puts in a value in the input box and clicks the link it will take the
value and pass it through the link to an asp page.
example:
Employee Name <input type="text" name="Tname" size="20">
<a href="emp_info.asp?e_num= Tname.value">Employee Info </a>
Will this help?
<form action="emp_info.asp" method="get">
Employee Name <input type="text" name="Tname" size="20">
<input type="submit" value="Submit Employee Name">
</form>
Will generate the following (partial) URL when Submit is clicked:
emp_info.asp?Tname=
Of course, there's no error checking for a blank name.
Also, there's no scripting involved.