手机
当前位置:查字典教程网 >编程开发 >ASP教程 >asp exit用法与exit实例教程
asp exit用法与exit实例教程
摘要:exit关键字改变通过使从循环结构立即退出的控制流。您可以使用在不同情况下退出的关键字,例如要避免死循环。要退出就...Next循环柜台前达...

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
%>

【asp exit用法与exit实例教程】相关文章:

ASP小偷(远程数据获取)程序的入门教程

用正则和xmlHttp实现的asp小偷程序

fso实例

收集asp的常用函数

ASP中FCKEditor编辑器的设置教程

asp Select Case 语法与 select case 实例

asp从缓存读数据实例

asp中实现随机分组程序的代码

身份证校验算法与ASP程序

ASP中经常使用的SQL语句与教程说明

精品推荐
分类导航