最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp exit用法与exit实例教程
时间:2022-07-02 22:34:05 编辑:袖梨 来源:一聚教程网
exit关键字改变通过使从循环结构立即退出的控制流。您可以使用在不同情况下退出
的关键字,例如要避免死循环。要退出就... Next循环柜台前达到其有限的价值,你
应该使用Exit For语句。要退出你...循环使用Exit Do语句。
Select ActionSelect AllTry It<%
response.write("
Example of using the Exit For
statement:
")
For i = 0 to 10
If i=3 Then Exit For
response.write("The number is " & i & "
")
Next
response.write("
Example of using the Exit Do
statement:
")
i = 5
Do Until i = 10
i = i - 1
response.write("The number is " & i & "
")
If i < 10 Then Exit Do
Loop
%>
相关文章
- 过山车之星2游乐园声誉提升方法分享 11-04
- 过山车之星2独特景点作用介绍说明 11-04
- 炉石传说标准模式轮盘术卡组推荐分享 11-04
- 炉石传说标准小行星萨卡组推荐分享 11-04
- 炉石传说基尔加丹轮盘术卡组推荐分享 11-04
- 炉石传说宇宙彩虹DK高胜率卡组推荐分享 11-04