Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing Form Field Data Between Pages

Status
Not open for further replies.

ashcat

MIS
Joined
Nov 16, 2001
Messages
1
Location
US
Does anyone have a good way to take data from form fields on one page and insert them into equivalent form fields on a different page?
 
This is a great question. Please emial me if you know. I need to peform this also
 
Say in page_1 you have 1 textboxt called "txt_1", in page_2 you have a textbox called "txt_2", to capture the value of txt_1 in page_1 into page_2's txt_2, you can do this at page_2,

<input type=&quot;text&quot; value=&quot;<%=Request.Form(&quot;txt_1&quot;)%>&quot;>

Hmm...is that what you want? Please tell me if I understand you wrongly... ------------------
Freedom is a Right
 
Or you can use

Request.Querystring(&quot;text1&quot;).value depending on your first forms method

.. Live long and make your kids suffer..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top