Forum Moderators: open
Am I being clear? I know how to make regular forms that E-mail info to us and send the user to a form complete page, but this is a little more complex.
Thanks for any help.
-Russell
Or you can do it all with client side javascript, but it might be complicated.
Basically the user would fill out the form then click submit. On the submit button you would validate the form, then instead of an actual HTML submit, I would use the window.open method to open a new window, and , in the new window, use the opener.document.formname.fieldname.value to get the information.
Then you can format it any way you want.
For the javascript idea you could start with a basic tutorial and learn as you go. Remember - the journey IS the destination.....
In the ASP, you could use a form to take in the users details, submit it to another ASP page which reads in the form variables (using the input name property) and then you can lay the data out any way you wish on the page, by writing the users data dynamically to the page where appropriate.
HTH
BolbFisk