Go Back   Velocity Reviews > Newsgroups > HTML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

HTML - Post Form with Variable of the form itself

 
Thread Tools Search this Thread
Old 03-03-2005, 05:04 PM   #1
Default Post Form with Variable of the form itself


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
  Reply With Quote
Old 03-03-2005, 05:27 PM   #2
Steve Pugh
 
Posts: n/a
Default Re: Post Form with Variable of the form itself

"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/>
  Reply With Quote
Old 03-03-2005, 05:34 PM   #3
TNG
 
Posts: n/a
Default Re: Post Form with Variable of the form itself

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/>



  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump