最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp do while 循环语法与do while实例教程
时间:2022-07-02 22:33:45 编辑:袖梨 来源:一聚教程网
在do while循环的另一种常用后... Next循环的循环。在do while循环语句重复语句
块的次数不定。重复的陈述或者当条件为真或直到条件变为True。语法如下所示:
Do [While|Until] condition
statements
Loop
Do
statements
Loop [While|Until] condition
在这方面,这个循环内的代码将执行至少一次的情况。在有一个例子:
下面的例子定义了一个循环,开始与i = 0。循环将继续运行,因为我只要小于或等于
10。我将增加1每次循环运行。
Select ActionSelect AllTry It<%
Dim i 'use i as a counter
i = 0 'assign a value to i
Do While i<=10 'Output the values from 0 to 10
response.write(i & "
")
i = i + 1 'increment the value of i for next time loop executes
Loop
%>
现在,让我们考虑一个更有用的例子,创建下拉几天,几个月或几年清单。您可以使
用此登记表的代码,例如。
<%
'creates an array
Dim month_array(11)
month_array(0) = "January"
month_array(1) = "February"
month_array(2) = "March"
month_array(3) = "April"
month_array(4) = "May"
month_array(5) = "June"
month_array(6) = "July"
month_array(7) = "August"
month_array(8) = "September"
month_array(9) = "October"
month_array(10) = "November"
month_array(11) = "December"
Dim i 'use i as a counter
response.write("")
response.write("
& vbCrLf)
i = i + 1
Loop
response.write("")
response.write("")
%>
相关文章
- 《真三国无双:起源》反击方法 11-25
- 《真三国无双:起源》武艺使用方法 11-25
- 《潜行者2:切尔诺贝利之心》手动存档方法介绍 11-25
- 《潜行者2:切尔诺贝利之心》支线任务盗亦无道攻略 11-25
- 《真三国无双:起源》回避作用分享 11-25
- 《潜行者2:切尔诺贝利之心》战役存档槽作用介绍 11-25