ASP循环语句之for ... next语句

for ... next  :指定语句运行的次数
语句的格式
如下为引用内容:
<%
for 变量=1 to N (总量)step M (步长)
重复执行的语句
next
%>
示例:
如下为引用内容:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> for ... next 语句的用法 </title>
</head>
<body>

<%
for i=1 to 10 step 2
response.Write i&", "&"hello world!<br/>"
next
%>

</body>
</html>
运行结果:
1, hello world!
      3, hello world!
      5, hello world!
      7, hello world!
      9, hello world!