asp classic - Is there a way to advance through a for loop by a value instead of one by one in VBScript? -


In VBScript I have a one-dimensional array that I would like to run, but has the ability to move forward from 2,3, on each walk of the loop 4 etc. This will be trivial in C ...

 for  (int i = 0; i <10; i + = 2)  

like this:

  I = 0 to 9 step 2  
< / Div>

Comments