<P>Movies that you like: (you may select more than one) <SELECT NAME="movies" MULTIPLE SIZE=3> <OPTION SELECTED> Jurassic Park <OPTION> The Usual Suspects <OPTION> Jacob's Ladder </SELECT>
' This part of the script shows a person ' what was selected. %>
<% If Request.Form("name") = "" Then %> <P>You did not provide your name. <% Else %> <P>Your name is <B><%= Request.Form("name") %></B> <% End If %>
<% If Request.Form("movies").Count = 0 Then %> <P>You did not select any movies. <% Else %> <P>The movies you like are: <B><%= Request.Form("movies") %></B>
<% If Request.Form("describe") = "" Then %> <P>You did not say why you like the movie(s) you have selected. <% Else %> <P>Your description of why you like the movie(s) is: <B><I><%= Request.Form("describe") %></B></I> <% End If %> <% End If %> <% End If %>