Panda On Smack
Can't get enough of FH
- Joined
- Dec 22, 2003
- Messages
- 1,030
Hello
I use the while function to loop through numbers all the time as it beats writing loads of line of code if you can have it made on the fly
what i want to know though is can you do it with Letters?
i want to do this with letters, any ideas?
Thanks
I use the while function to loop through numbers all the time as it beats writing loads of line of code if you can have it made on the fly
what i want to know though is can you do it with Letters?
Code:
<%
dim x
x = 0
while x < 10
%>
use x here etc
<%
x = x + 1
wend
%>
i want to do this with letters, any ideas?
Thanks