 |

|
<%
Select Case Request.QueryString("status")
Case "0"
Response.Write("Incorrect username/password.")
Case "1"
Response.Write("Account not active.")
Case "2"
Response.Write("Username already in use.")
Case "3"
Response.Write("User created, Activation email has been sent.")
Case "4"
Response.Write("Please login.")
Case "5"
Response.Write("Details updated.")
Case "6"
Response.Write("New password does not match.")
Case "7"
Response.Write("Your account has been activated, You can now login.")
Case "8"
Response.Write("Your account has already been activated.")
Case "9"
Response.Write("No user accounts have been created yet.")
Case "10"
Response.Write("Invalid email address.")
Case "11"
Response.Write("You dont have an administrator account.")
End Select
%>
|