Your First Name

Your Last Name

Here Is the Select Case that will determine what the form Input means. caserespond.asp <% fname=Request.QueryString("Firstname") lname=Request.QueryString("Lastname") %> Nice To Meet You <%=fname%> <%=lname%>

<%If fname="" then%> Sorry we are Not On a first name basis...

<%end If Select Case LCase(lname) Case "washington","adams" Response.Write "The first president has same last name

" Case "jefferson" Response.Write "The third president has same last name

" Case "lincoln" Response.Write "The sixteenth president has same last name

" End select%>