Forum Moderators: open
The only trouble is, recognizing the character length. I tried using cint before remembering that is for determining the value of a number, not the length of a series of characters.
So, I'm slightly puzzled.
ASP under-achiever of the year//
cmatcme
-=casey=-
Trouble is:
If Len(request("visitor"))<=3 AND Len(request("visitor"))=>7 Then
response.write "Valid visitor"
Else
response.write "Invalid visitor"
End If
... doesn't appear to work.
Invalid visitor always comes up.
Would I have to use
cint(Len(request("visitor")))<=3
?