<CSP:CONTINUE>
Executes the next
iteration of the containing CSP:WHILE or CSP:LOOP block.
Synopsis
<CSP:CONTINUE>
Description
The CSP:CONTINUE executes the next iteration of the containing CSP:WHILE or CSP:LOOP block. For example:
<CSP:WHILE COUNTER=x CONDITION="(x<3)">
<CSP:IF CONDITION="(x=2)">
<CSP:CONTINUE>
</CSP:IF>
Item #(x)# <br>
</CSP:WHILE>
Will produce the following result:
Item 1
Item 3