Asp:
Form from a previous page:
First Name: <input name=firstname>
etc etc
Page that you post to (asp):
<%
firstname = Request("firstname")
lastname = Request("lastname")
' keep adding all the fields from your form in this manner
%>
Hi <%=firstname%> Â* <%=lastname%> Thanks for posting your first and last name on my site.