STATEMENT:  For Each

Implemented in version 2.0
 
For Each . . . Next
 
The For Each conditional statement repeats a block of code for each element of an array or a collection of data.
 
You can use Exit For statements to exit out of a For Each loop. You can place For Each statements inside of other conditional statements. You must end all For Each statements with Next or you will get an error message.
 
In the example, the variable i will assume the value of each element in the array, one at a time, in order, from the first element in the array up to the last element actually being used.
 
Code:
<%
For Each i in myarray
   Rem You can place all of the code you desire inside a For Each loop
Next
%>