Asp Looping Statements
As with most programming languages, ASP allows (through VBScript) for several types of repetitive operations, also commonly known as loops. Loops are used to repeat the same group of statements until a specified condition is met. In most cases, you control the number of iterations with a variable used as a counter, which typically increments until a certain target number is reached. However, you can also loop through a set of data until you reach the end of the set....