This form allows a customer to to enter details, and it automatically enters the info into a webtemplate before they purchase: http://www.chiropracticwebdesign.com/preview-enterdetails.asp Does anyone know of a program that will do this?
Store all info in some variables, and post them into templates' object. I personally haven't tried it myself, but I'm sure that you can do this, since it's all programming languages...? good luck
very basic as said. Store the details somewhere, or even with this example simply post them to the next page and then call them back to bind to a control so with posting and ASP as the site uses it would simply be <%=request.form("name") %> where you want the content from the form element called "name" to be shown.