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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I display my confirmation page before Submit 1

Status
Not open for further replies.

PeachRL

Technical User
Nov 9, 2000
6
US
Is there a way I can display my confirmation page within my script before the order is submitted so my customer can check the info being submitted
 
Just submit the form to a new page (use "Next" for the value of the submit button, to let the user know there is another step), and on that page use the request.form method to get all the data, and display it back to the user.
Create another form on the new page, and use the <input type=&quot;hidden&quot; value=&quot;<%=variable%>&quot; name=&quot;name&quot;>
tag to put all of the data into the form.
Provide a Back button to the user if the data is wrong, and a submit button if the data is correct. Good Luck!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top