<!--- This example illustrates the use of a "thank you" note after submitting a form --->
<HTML>
<HEAD>
<TITLE>Guestbook Template</TITLE>
</HEAD>
<BODY>
We want to see how popular Active Server Pages are.
<BR>
Please help us by filling out our survey.
<P>
<FORM ACTION="asp_ty.asp" NAME="form1" METHOD="post">
Name: <INPUT TYPE="text" SIZE=30 NAME="yourname">
<P>
Email Address: <INPUT TYPE="text" SIZE=30 NAME="email">
<P>
Do you like Active Server Pages?
<INPUT TYPE="radio" NAME="answer" VALUE="yes" CHECKED> Yes
<INPUT TYPE="radio" NAME="answer" VALUE="no">No
<P>
<INPUT TYPE="submit" VALUE="Submit Survey">
</FORM>
</BODY>
</HTML>