This is an example page.
For more information about pages and how to use them, visit the BlogEngine.NET wiki.
<%
Dim i
Dim y
i = 0
For y = 1 To 12
Response.Write("<div class=""div" & i & """>" & "Div:" & y & " [i = " & i & "]</div>" & VbCrLf)
i = 1 - i
Next
%>