
April 25th, 2000, 04:25 PM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,578
  
Time spent in forums: < 1 sec
Reputation Power: 22
|
|
|
<i><b>Originally posted by : Darren DiPasquale (aliasce@home.com)</b></i><br />There are a number of ways you can do this but the easiest is the following:<br /><br />Pass the variables to the confirmation page and then display them. This means that the information you are asking must be part of a form and thus have variable names that are used to hold their information to be sent. Simply have the page display these variables<br /><br />I.E.<br />Page 1<br />You ask for GetName in a text box<br /><br /><input type="Text" name="GetName" value=""><br /><br />They click submit and it calls the confirmation page<br /><br />Page 2<br />At the top of the confirmation page enclosed within ASP tags place<br /><br />ConfGetName = Request("GetName") <br /><br />This will pass the variable to the new page <br />Somewhere on the page place a textbox<br /><input type="Text" name="SaveGetName" value="<%= ConfGetName%>"><br /><br />I hope this helps<br /><br />------------<br />Nishant Pandit at 4/10/2000 10:50:38 AM<br /><br />I created an online submission form and generated a conformation page after the data in the form is submitted.<br />But i want the data in the conformation page to be displayed in text boxes so that edits can be made.<br />how do i do this?<br />Thanx
|