![]() |
|
|
|||||||
![]() |
HTML - Post Form with Variable of the form itself |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
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> TNG |
|
|
|
|
#2 |
|
Posts: n/a
|
"TNG" <> wrote:
>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 -- "My theories appal you, my heresies outrage you, I never answer letters and you don't like my tie." - The Doctor Steve Pugh <> <http://steve.pugh.net/> |
|
|
|
#3 |
|
Posts: n/a
|
THANK YOU
"Steve Pugh" <> wrote in message news:... > "TNG" <> wrote: > >>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 > > -- > "My theories appal you, my heresies outrage you, > I never answer letters and you don't like my tie." - The Doctor > > Steve Pugh <> <http://steve.pugh.net/> |
|