ASP.NET Razor VB 循环和数组
asp.net razor - vb 循环和数组
语句在循环中会被重复执行。
for 循环
如果您需要重复执行相同的语句,您可以设定一个循环。
如果您知道要循环的次数,您可以使用 for 循环。这种类型的循环在向上计数或向下计数时特别有用:
实例
<html>
<body>
@for i=10 to 21
@<p>line #@i</p>
next i
</body>
</html>
<body>
@for i=10 to 21
@<p>line #@i</p>
next i
</body>
</html>
for each 循环
如果您使用的是集合或者数组,您会经常用到 for each 循环。
集合是一组相似的对象,for each 循环可以遍历集合直到完成。
下面的实例中,遍历 asp.net request.servervariables 集合。
实例
<html>
<body>
<ul>
@for each x in request.servervariables
@<li>@x</li>
next x
</ul>
</body>
</html>
<body>
<ul>
@for each x in request.servervariables
@<li>@x</li>
next x
</ul>
</body>
</html>
while 循环
while 循环是一个通用的循环。
while 循环以 while 关键字开始,后面紧跟着括号,您可以在括号里规定循环将持续多久,然后是重复执行的代码块。
while 循环通常会设定一个递增或者递减的变量用来计数。
下面的实例中,+= 运算符在每执行一次循环时给变量 i 的值加 1。
实例
<html>
<body>
@code
dim i=0
do while i<5
i += 1
@<p>line #@i</p>
loop
end code
</body>
</html>
<body>
@code
dim i=0
do while i<5
i += 1
@<p>line #@i</p>
loop
end code
</body>
</html>
数组
当您要存储多个相似变量但又不想为每个变量都创建一个独立的变量时,可以使用数组来存储:
实例
@code
dim members as string()={"jani","hege","kai","jim"}
i=array.indexof(members,"kai")+1
len=members.length
x=members(2-1)
end code
<html>
<body>
<h3>members</h3>
@for each person in members
@<p>@person</p>
next person
<p>the number of names in members are @len</p>
<p>the person at position 2 is @x</p>
<p>kai is now in position @i</p>
</body>
</html>
dim members as string()={"jani","hege","kai","jim"}
i=array.indexof(members,"kai")+1
len=members.length
x=members(2-1)
end code
<html>
<body>
<h3>members</h3>
@for each person in members
@<p>@person</p>
next person
<p>the number of names in members are @len</p>
<p>the person at position 2 is @x</p>
<p>kai is now in position @i</p>
</body>
</html>