Do Loop Part #1 by Charles Carroll
To execute a code sequence more than once ASP provides:
Either of these statements can be followed by UNTIL or WHILE.
DO UNTIL .....code to be repeated... LOOP
DO .....code to be repeated... LOOP UNTIL