I have vbscript program that uses a select case statement to redirect users based on their zip code.
All other zip codes not specifically listed in the case statement are directed to the same place using "case else". Now I am trying to break down the "all others" into three categories based only on the first two digits of the zip code entered.
All other zip codes are matched by all numbers and now I need to match just the first two numbers.
This of course needs to happen after the original cases have been ruled out.
I have been trying to use:
"case Instr(04)"
but this doesn't work as the user is directed to "page not found"
Thanks in advance for any tips or advice!!!