Form 1 to Form 2 value

admin

Administrator
Staff member
Ok. This should be fairly easy but I have run into the wall and can not find a way around it :p

I have a form with only one text field. When someone enters some text and clicks the submit button, I want this value (the text in the field) fed into another form on a different page which is then submitted. Kind of weird but this is feeding a value from a page that is not an .aspx to an .aspx page. :confused:

Basically, I have 2 files. One file feeds a value into the second file which needs to get the results based upon the value fed into it.

A better example is like a search page. I enter the text on one page and then get the results on a different page.

thanksset the form's action to the page you want it to go to

and set the method to get

and on your ther page you can use the query string

Eric
 
Back
Top