Post Form with Variable of the form itself

T

TNG

Hi,

I have a simple form with a lang. choise, but in the file to open, I want to
pass the chosen value, but how ?
This is not working... Is it possible ?
Thx in advance
<form name="Lang_choise" action="index2.asp?item=start&subitem=x&lang=" &
request.form(lang_initial) & " method="post"">
<select name="lang_initial">
<option value="Français"> Français</option>
<option value="Nederlands"> Nederlands</option>
</select>
 
S

Steve Pugh

TNG said:
I have a simple form with a lang. choise, but in the file to open, I want to
pass the chosen value, but how ?
This is not working... Is it possible ?
Thx in advance
<form name="Lang_choise" action="index2.asp?item=start&subitem=x&lang=" &
request.form(lang_initial) & " method="post"">
<select name="lang_initial">
<option value="Français"> Français</option>
<option value="Nederlands"> Nederlands</option>
</select>

<form name="Lang_choise" action="index2.asp" method="get">
<input type="hidden" name="item" value="start">
<input type="hidden" name="subitem" value="x">
<select name="lang">
<option value="Français"> Français</option>
<option value="Nederlands"> Nederlands</option>
</select>

Steve
 
T

TNG

THANK YOU

Steve Pugh said:
<form name="Lang_choise" action="index2.asp" method="get">
<input type="hidden" name="item" value="start">
<input type="hidden" name="subitem" value="x">
<select name="lang">
<option value="Français"> Français</option>
<option value="Nederlands"> Nederlands</option>
</select>

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <[email protected]> <http://steve.pugh.net/>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,049
Latest member
Allen00Reed

Latest Threads

Top