<% dim iFormChoice iFormChoice = Request.QueryString("WhichForm") Select Case iFormChoice Case 1 %> This will show the results of the text input form fields

My TextField Input Field<%= Request.Form("MyTextField") %>
My Passsword Input Field<%= Request.Form("MyPWField") %>
My TextArea Input Field<%= Request.Form("MyTextArea") %>

<% Case 2 %> This will show the results of the radio and checkbox form fields

Radio Button Selected<%= Request.Form("MyRadio") %>
Check Boxes Checked<% dim strCheck for each strCheck in Request.Form("MyCheckBox") Response.Write strCheck & "
" next %>

<% Case 3 %> This will show the results of the selection form fields

List Choice Selected<%= Request("MyDropList") %>
MultiSelect Choices Selected<% for each strCheck in Request("MyListBox") Response.Write strCheck & "
" next %>

<% End Select %>