HTML asp or cgi. I need help?

hunter b

New member
i need either an asp or cgi page to take the information that users posts from my site and post it on another page on my site. Any help is appreciated
 
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.
 
Back
Top