|
How can i add more than 1 username and password to this code, is there a special delimeter (did i say that right "delimeter") to add between the seperate usernames and passwords. Do i need a whole new code? Here is the current code
<%
If (Request("USERNAME") <> "guest") Or (Request("PASSWORD") <> "arch") Then
Response.Redirect("index.asp?failedlogin=true&USER NAME=" & Request("USERNAME"))
End If
Response.Write Chr(13) ' prints out a carriage return as output in case the page is browsed to directly
%>
Can anyone help, thanks in advance
|