josip legionares
josip legionares

Reputation: 27

What's the maximum number of repetitions allowed in vbscript

i have some little script which check is there is some new content on website. I created infinite loop and script stops at some time, i think about 2700 repetition. Is there some restriction on number of repetition? thanks in advance

Upvotes: 0

Views: 71

Answers (1)

MC ND
MC ND

Reputation: 70933

Do While True
    ....
Loop

No, there is no loop repetition limit.

Upvotes: 1

Related Questions