<HTML> <HEAD> <TITLE>Form1.htm</TITLE> </HEAD> <BODY> <H2>Please enter:</H2> <FORM ACTION="ProcessForm.asp" METHOD="post"> <P>Your name: <INPUT TYPE="text" SIZE=20 NAME="FullName"> <P>Your phone number: <INPUT TYPE="text" SIZE=11 NAME="Phone"> <P>Your e-mail address: <INPUT TYPE="text" SIZE=45 NAME="EMail"> <P><INPUT TYPE="submit" VALUE="Do It!"> </FORM> </BODY> </HTML> <HTML> <HEAD> <TITLE>ProcessForm.asp</TITLE> </HEAD> <BODY> <H2>You entered:</H2> <P> <% Response.Write( "<B>Your name:</B> " & Request.Form("FullName") & "<BR>") Response.Write( "<B>Your phone number:</B> " & Request.Form("Phone") & "<BR>") Response.Write( "<B>Your e-mail address:</B> " & Request.Form("EMail") & "<BR>") %> </BODY> </HTML>

Programming for Active Server Pages (Web Techniques, Oct 1997)
Related Reading
More Insights
INFO-LINK
![]() |
To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy. |