First Name:    Last Name: M F

Address: 

 

The code for this page is below. Note that this page contains no server-side script and therefore does not need to be saved as an ASP page, though the page that will receive the information IS an ASP page.

<FORM METHOD="post" ACTION="processform.asp">
First Name: <INPUT TYPE="text" NAME="FirstName" size="20">&nbsp;&nbsp; 
Last Name: <INPUT TYPE="text" NAME="LastName" size="20"> 
M<INPUT TYPE="radio" NAME="Sex" VALUE="M"> 
F<INPUT TYPE="radio" NAME="Sex" VALUE="F"><p>
Address:&nbsp; <TEXTAREA NAME="Address" rows="4" cols="33"> </TEXTAREA> </p> <p>
<INPUT TYPE="submit" VALUE="Send"> </p>
</FORM>