-
I am designing a page whereby the user fills out a form & presses submit the variables that the user filled out should be loaded in the hidden variables which opens after the first form is submitted
The ides is to process all the details together rather thn processing 2 different forms
Any pointers are welcome
Thanks
-
Hi,
If the second form is on a second page (which is opened by the first page), use opener.formname.fieldname.value...etc; if you're using frames, store the values in the parent and then try parent.variables.
Vinny
------------------
GrassBlade: cut&paste javascript
-
yes the forms are on two seperate pages
when we click submit the second form should open
could you please elaborate
what should be the action of the first form & how do we take the values into the second form
-
If you are using ASP, than inside the form on the second page you would write something like this:
<input type="hidden" name="txtHidden" value="<% = Request("Field_Name_From_First_Page") %>">
This will create a hidden field on the second form with data that was entered on the first form.
Eugene. http://www.interprosolution.com
FREE Tools & Services for Webmasters
-
I am not using asp i am using plain html with java script used at the minimum
Please help