Collection Insieme di coppie di nomi o valori. Item è il metodo predefinito per le Collection, quindi Object.Property.Item(varItem) == Object.Property(varItem) Importante la proprietà Count, che inizia da 1

For Each ... Next

For Each varItem in Request.QueryString Response.Write(varItem & " = " & Request.QueryString.Item(varItem) & "<br>") Next

For ... Next

For iCount 1 to Object.Property.Count Response.Write(iCount & "th value = " & Object.Property(iCount) & "<br>") Next