<%
If Request.QueryString<>"" Then
Response.Write("")
Response.Write("The information received from the form was:")
Response.Write("
")
Response.Write("name=" & Request.QueryString("name"))
Response.Write("
")
Response.Write("The name property's count is: ")
Response.Write(Request.QueryString("name").Count)
Response.Write("
")
Response.Write("First name=" & name1)
Response.Write("
")
Response.Write("Last name=" & name2)
Response.Write("
")
end if
%>