|
Posted by Martix on 03/26/07 20:30
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>
>
> > 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*
What would I do if I had more then one hyperlink pulling the value
from the same inputbox??
Navigation:
[Reply to this message]
|