<%@ page import="diamondedge.asp.*,diamondedge.util.*,diamondedge.ado.*" %>
<%!
%>
<%
Variant j = new Variant();
int i = 0;
Asp.init( request, response, out );
%>
<HTML>
<HEAD>
<TITLE>Looping</TITLE>
</HEAD>
<BODY BGCOLOR="White" topmargin="10" leftmargin="10">
<!-- Display Header -->
<font size="4" face="Arial, Helvetica">
<b>Looping
with ASP</b></font><br>
<hr size="1" color="#000000">
<%
// Index Counter
%>
<!-- Looping with a for loop -->
<%
for( i = 1; i <= 5; i++ )
{
%>
<FONT SIZE=<%= i %>>
For Loop<BR>
</FONT>
<%
}
%>
<hr>
<!-- Looping with a while loop -->
<%
i = 1;
while( i < 6 )
{
%>
<FONT SIZE=<%= i %>>
While Loop<BR>
</FONT>
<%
i = i + 1;
%>
<%
}
%>
<hr>
<!-- Looping with a do..while loop -->
<%
i = 1;
do
{
%>
<FONT SIZE=<%= i %>>
Do..While Loop<BR>
</FONT>
<%
i = i + 1;
%>
<%
}
while( i < 6 );
%>
</BODY>
</HTML>