I'm trying to make changes to an ecommerce site written by someone else. Obviously there is an order form which the visitor fills out. When he's finished, a confirmation form summarizing the entries appears and asks him to verify all the information. If it's OK, he clicks a submit button and the data is sent to the database. After submission, a page opens which asks if he'd like to print a receipt.
My question is this: is there a way to "regenerate" the confirmation form after it's been submitted without pulling all the data out of the database? The summary form is comprised of vbscript as in:
<% Response.Write Request.Form("shipAdd"
%>
If you're wondering why I don't want to get the data from the database, it's because I know even less about databases than js!! (hard to believe but true).
Thanks,
Gary
My question is this: is there a way to "regenerate" the confirmation form after it's been submitted without pulling all the data out of the database? The summary form is comprised of vbscript as in:
<% Response.Write Request.Form("shipAdd"
If you're wondering why I don't want to get the data from the database, it's because I know even less about databases than js!! (hard to believe but true).
Thanks,
Gary