<% textvalue=Request.Form("T1") radiovalue=Request.Form("R1") check1=Request.Form("C1") check2=Request.Form("C2") dropdown=Request.Form("D1") %> The text box contained: <% =textvalue %>
The radio option selected was: <% =radiovalue %>
Deluxe Accommodations Requested: <% If check1="ON" then %> Yes
<% else %> No
<% end if %> Side Trips Requested: <% If check2="ON" then response.write("Yes") else response.write("No") end if %>
The Trip ID Number is: <% =dropdown %>