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

asp exit用法與exit實例教程

編輯:關於ASP編程

    exit關鍵字改變通過使從循環結構立即退出的控制流。您可以使用在不同情況下退出

    的關鍵字,例如要避免死循環。要退出就... Next循環櫃台前達到其有限的價值,你

    應該使用Exit For語句。要退出你...循環使用Exit Do語句。

    Select ActionSelect AllTry It<%
    response.write("<p><strong>Example of using the Exit For

    statement:</strong><p>")

    For i = 0 to 10 
       If i=3 Then Exit For 
       response.write("The number is " & i & "<br />")
    Next

    response.write("<p><strong>Example of using the Exit Do

    statement:</strong><p>")

    i = 5
    Do Until i = 10
      i = i - 1
      response.write("The number is " & i & "<br />")
      If i < 10 Then Exit Do
    Loop
    %>

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