Posted by BootNic on 03/26/07 19:39
> Martix <ig.martix@gmail.com> wrote:
> news: 1174936716.054843.57900@y66g2000hsf.googlegroups.com
> Hello
>
> I would like to pass the value of a inputbox through a hyperlink. I
> know this can be done with a single valuelike:
>
> <a href="employee.asp?e_num=6">Market Info </a>
>
> My problem is that I need the "6" to be a variable pending on what's
> in the input box.
>
> How do I do that?
Use a form, that's what it does.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<form action="employee.asp">
<div>
<input name="e_num">
<br>
<input style="border:none; background-color:#fff; color:#00F;
cursor:pointer;" type="submit" value="Market Info">
</div>
</form>
</body>
</html>
--
BootNic Monday, March 26, 2007 3:39 PM
"Do not trust your memory; it is a net full of holes; the most
beautiful prizes slip through it."
*Georges Duhamel, The Heart's Domain*
[Back to original message]
|