NinjaTurtle
01-14-2003, 08:18 AM
dear,
i have two forms: Form1 & Form2 in a same file(abc.asp), another page(xyz.asp) is to capture the value that pass from abc.asp
<Form name=Form1 action="abc.asp">
<Select size=1 name=test onchange="document.form1.submit()">
<option value=1>1</option>
<option value=2>2</option>
</select>
<input type=text name=Description>
</Form>
<Form name=Form2 action="xyz.asp">
<input type=text name=password>
<input type=submit name=OK value=ok>
</Form>
---- Just an simply example ---
WHen user select the drop down list the FORM1 will refresh and pas the value to Description text box. Then user need to key in the value of the Password into the text box. Then press OK button the value of FORM1 and FORM2 will pass to next page(xyz.asp)....
i have two forms: Form1 & Form2 in a same file(abc.asp), another page(xyz.asp) is to capture the value that pass from abc.asp
<Form name=Form1 action="abc.asp">
<Select size=1 name=test onchange="document.form1.submit()">
<option value=1>1</option>
<option value=2>2</option>
</select>
<input type=text name=Description>
</Form>
<Form name=Form2 action="xyz.asp">
<input type=text name=password>
<input type=submit name=OK value=ok>
</Form>
---- Just an simply example ---
WHen user select the drop down list the FORM1 will refresh and pas the value to Description text box. Then user need to key in the value of the Password into the text box. Then press OK button the value of FORM1 and FORM2 will pass to next page(xyz.asp)....