<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> Untitled Document

Test deel 2 - ASP met VBScript...

 

<% Dim I ' declare our loop index variable %> <% ' Start the loop telling it to loop from 1 to 5 incrementing ' I by one (which is the default) on each pass. ' ' ie. this would have done the same thing: ' For I = 1 To 5 For I = 1 To 5 Step 1 ' Output our HTML and text using the value of I as ' the FONT TAG's SIZE attribute. %> Hello World
<% Next I ' Bounce back to the top of the loop %>