Quick References
      ADO
      ASP
      CSS2
      HTML
      JavaScript
      Jet SQL
      VBScript
      WML
      WMLScript
      WSH
      XHTML
      XML DOM
      XSLT

Features
      Knowledge Base
      Tutorials

Partners
     ZVON.ORG
     XML
     Planet Source Code
     VisualBuilder
     Web Design
     Your HTML Source
     XML/XSLT Forums
     ASPAlliance
     Scripts
     
     Programmers Heaven
     Tek-Tips Forums
     Developer Fusion
     Code Project











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
%>


 


Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information