Hi Deano, Its quite simple to post Data from one page to another using ASP. Here is a quick example of how it can be done:
1) Set up your form as normal (naming all your fields
2) Set it to post to the ASP page you wish to display the data on (e.g. DisplayData.asp)
3) Above the HTML tags on DisplayData.asp write the following:
variable1 = Request.form("textfield1")
variable2 = Request.form("textfield2")
variable3 = Request.form("textfield3")
variable4 = Request.form("textfield4")
variable5 = Request.form("textfield5")
etc etc.
Change the varialbe names (i.e. variable1, variable2 etc) to whatever you want. Something like Firstname, Surname etc.
Change the "textfield1", "textfield2" parts to match the names of each text field on your form.
Now, within your actual page (between the body tags) write <%=variable1%>
<%=variable2%>
These should now display exactly what you entered into the form on the previous page.
You can then play around with the layout, font etc.
Let me know if this helps ..... if not, i can try and explain in a little more detail .... or i will even write the code for you as a guide if it helps!
Webboy