User Name:
<%= Request.QueryString("txtUserName") %>
Password:
<%= Request.QueryString("txtPassword") %>
<%
Dim pwd
pwd = Request.QueryString("txtPassword")
if pwd="2" then
Response.Write("You chose the special number 2. ")
end if
Response.Write("Printing the password again:")
Response.Write(pwd)
%>