熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

asp exit用法與exit實例教程

2022-06-13   來源: .NET編程 

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

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

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

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

  statement:</strong><p>")

  For i = to  
   If i= Then Exit For 
   responsewrite("The number is " & i & "<br />")
Next

  responsewrite("<p><strong>Example of using the Exit Do

  statement:</strong><p>")

  i =
Do Until i =
  i = i
  responsewrite("The number is " & i & "<br />")
  If i < Then Exit Do
Loop
%>


From:http://tw.wingwit.com/Article/program/net/201311/14209.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.