I have 7 variables named moora1, moora2, moora3,.., moora7 and has its corresponding values. I want to loop through them and print its corresponding values, how can I achieve that.
The following code dosen't work:
Code:
moora1 = 10 moora2 = 20 moora3 = 30 moora4 = 40 moora5 = 50 moora6 = 60 moora7 = 70 for i = 1 to 7 response.write moora&i&"<br>"