Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
ASP.NET

Loops in Classic ASP

Iterate with For, For Each, Do While, and Do Until.

Loops in Classic ASP — a practical guide to Classic ASP loops with clear examples you can reuse in real projects.

ASP & ASP.NET Tutorial Series (12/247). Prefer one article? Read the complete ASP.NET tutorial.

Short description

Avoid unbounded loops on request threads.

For

For i = 1 To 5
  Response.Write i & "<br>"
Next