<%@ Page Language="C#" %>
<html>
<head>
<title>C# Primer: While Loop</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<!-- #include virtual="~/shared/top.inc -->
<div class="header"><h2>C# Primer: <span class="hilite">While Loop</span></h2></div>
<hr size=1 width=92%>
<center>
<p>
<% int i = 1;
while ( i < 7 ) { %>
<font size=<%= i %>>
This text is within a While loop.<br>
</font>
<% i++;
} %>
</p>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>