Hi treasacrowe,
There no such rule other than this.
When you want to check if the string variable is Empty/Null, you can do that using IsEmpty() or IsNull() functions.
When you decide to use Len(), it is better to always TRIM() that before using LEN(), so that a variable with just some blank white spaces would make you think that it is not empty.
Code:
If Len(Trim(yourvariable)) > 0 then
Response.write "Yes, something is there"
End If
Hope that helps.
Cheers!
_________________________
- Vijay G
Strive for Perfection