<html>
<body>
<script type="text/vbscript">
i=0
do while i < 10
document.write(i & "<br />")
i=i+1
loop
</script>
</body>
</html>