|
Posted by BootNic on 03/26/07 20:57
> Martix <ig.martix@gmail.com> wrote:
> news: 1174941029.981506.277710@l75g2000hse.googlegroups.com
> On Mar 26, 4:39 pm, "BootNic" <boot...@bounce.earthlink.net> wrote:
>>> Martix <ig.mar...@gmail.com> wrote:
>>> news:
>>> 1174936716.054843.57__BEGIN_MASK_n#9g02mG7!__...__END_MASK_i?a63jfAD$z__@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>
[snip]
>
> What would I do if I had more then one hyperlink pulling the value
> from the same inputbox??
Provide a better example of what you are trying to achive. At the
moment I can't see why you would want to spread the same action all
over a page.
If you only have one input, why would you need more then
one place to submit the info?
At any rate, if you wish to depend on Javascript .
<!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 id="bob" name="e_num">
</div>
</form>
<a href="JavascriptRequired.asp" onclick="this.href='employee.asp?'+
document.getElementById('bob').value;return true;">
Market Info
</a>
</body>
</html>
--
BootNic Monday, March 26, 2007 4:56 PM
"My God! The thought of that evil man, loose in London--with money,
from God only knows what source--fomenting riot and rebellion during
a public emergency--and in control of an Engine-driven press! It's
nightmarish!"
*Gibson-Sterling*
Navigation:
[Reply to this message]
|