For error trapping on an asp page, I'd like to print out the name of a
variable if I find it to be null, a zerolength string, etc...
for example:
aBadString = "a"
aBadString = ""
If CheckForZeroLengthString(aBadString) then
Response.write("The variable with a zero-length string is: " &
aBadString.name)
you can't do aBadString.name, so how do you get a variable's name?
Thanks,
Mike