how to Pass a text field data from one form to another?
Visitor Ratings
(11) :
Description
To transfer the contents of the following form to the same form on another page is quite simple.Try the following example.
If we enter some information in the text box and then press enter the browser will load the test2.html file into the browser.he browser passes the name of the form field along with the value of the field as part of location:
For the receiving page to access this data, all that is required is to manipulate the search property of the current location. The search property is first stripped of its initial question mark, and then held in passed. The getParm() function is used to return the value of the required parameter contained in passed. The values returned by getParm() are then used to update the formname form fields.