I have to change javascript for loops to asp for loops. I'll give an example as to what I've been doing.
[javascript]
for(var x=0;x<0;x++)
[asp]
dim x:x=0
for x<0
//some code//
x++
next
The only problem is that I realized that I've been forgetting to put the to at the end of statement. My question is, what do I put after the to if my original loop is all used up?
Any help would be appreciated.


Reply With Quote
Bookmarks