% strUrl = request.servervariables("URL") Dim strPassword 'Holds password Dim strUsername 'Holds username Dim str_forward 'Holds URL to forward to if sucessful Dim str_forward2 'Holds URL to forward to if unsucesful Dim str_form_pass 'Holds password entered in form Dim str_form_user 'Holds username enetered in form 'Change these details here strUsername = "st45pc" strPassword = "38tv58" 'This is the page it goes to if password is incorrect str_forward2 = "join.php" IF Request.QueryString("step") = "2" THEN str_form_user = Request.form("username") str_form_pass = Request.form("password") IF lcase(str_form_pass) = strPassword AND lcase(str_form_user) = strUsername THEN Response.redirect("http://members-site.net/tvtopc/index.htm") ELSE Response.redirect(str_forward2) END IF Else end if %>