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!
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章