|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
For Next Loop - Display Alphabet
I want to use letters instead number for a counter in a for next loop. Any ideas? I want to output:
A B C D . . . S T U ....
__________________
Today the world, tomorrow the universe... |
|
#2
|
||||
|
||||
|
Try this
Code:
for i = asc("A") to asc("Z")
response.Write(chr(i) & "<br />")
next
Hope this helps, Neal. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > For Next Loop - Display Alphabet |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|