-
Hello,
I want to send variables from one page to the next using
something like
<form method="post"
action="Details.asp?name=turfbult&surname=maxwell">
However, I have an input box called "keyword". How can I send
whatever the user entered into that inputbox using
form method="post" and querystrings. I dont want to use
form methid="get".
Any help please.
Thanks,
T
-
Well well
U just need to do something like this
<FORM METHOD=POST ACTION=the destination>
<INPUT TYPE=TEXT>
<INPUT TYPE=SUBMIT>
</FORM>
-
If you want to send everything via POST then just put your other variables in hidden input fields...
Code:
<FORM name="Details" method="POST" action="details.asp">
<INPUT type="hidden" name="name" value="turfbult">
<INPUT type="hidden" name="surname" value="maxwell">
<INPUT type="text" name="keyword">
<INPUT type="submit">
</FORM>
Is that what you're going after or did I misunderstand?