Survey Form
<%
Dim strLname, strDay, strInterest, strSport, strComments
strLname = Request.Form("Lname")
strDay = Request.Form("DayOfWeek")
strInterest = Request.Form("Interests")
strSport = Request.Form("Sports")
strComments = Request.Form("Comments")
%>
Last name:
<% Response.Write strLname %>
Day of Week:
<% Response.Write strDay %>
Interest:
<% Response.Write strInterest %>
Favorite Sport:
<% Response.Write strSport %>
Comments:
<% Response.Write strComments %>