程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> asp For Next 循環語句語法與實例

asp For Next 循環語句語法與實例

編輯:關於ASP編程

    For Next循環使用時,你要執行一段代碼多次集數。語法如下:
    For counter = initial_value to  finite_value [Step increment]
      statements
    Next
    For語句指定計數器變量及其初步和有限的價值。 Next語句增加了對抗一個變量。可

    選的步驟關鍵字允許增加或減少的值指定計數器變量。

    有一個很簡單的例子:

    <%@ language="vbscript" %>
    <%
    For i = 0 to 10 Step 2 'use i as a counter
     response.write("The number is " & i & "<br />")
    Next
    %>

    復雜實例

    Select ActionSelect AllTry It<%@ language="vbscript" %>
    <%
    response.write("<h1>Multiplication table</h1>")
    response.write("<table border=2 width=50%")

    For i = 1 to 9             'this is the outer loop
       response.write("<tr>")
       response.write("<td>" & i & "</td>")
     
       For j = 2 to 9          'inner loop
            response.write("<td>" & i * j & "</td>")
       Next 'repeat the code and move on to the next value of j 

       response.write("</tr>")
    Next 'repeat the code and move on to the next value of i

    response.write("</table>")
    %>

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved