| <%name=Request.querystring("name")%>
<%
error=Request.querystring("error")
If error <> "" then
If error = "Name_Null" Then
Response.write "PLEASE fill the username"
Else
If error = "Pass_Null" Then
Response.write "PLEASE fill the password"
Else
If error = "Name_Entry" Then
Response.write "ERROR in username or password"
Else
If error = "Pass_Entry" Then
Response.write "ERROR in username or password"
End If
End If
End If
End If
End If
%>
|
|