<!DOCTYPE html>
<html>
<body>
<%
i=0
Do While i < 10
response.write(i & "<br>")
i=i+1
Loop
%>
</body>
</html>