Okay.. here's an easy one...
I get the "expected statement" error.
I think this has to do with the "to".
How do I do a range in VBscript/ASP?
Thanks
Code:
Function result(Number)
Select Case Number
Case 1 to 5
result = "hi"
Case 6 to 10
result = "Bye"
end Select
End Function
I get the "expected statement" error.
I think this has to do with the "to".
How do I do a range in VBscript/ASP?
Thanks