ASP.NET Razor VB 循環(huán)和數(shù)組
asp.net razor - vb 循環(huán)和數(shù)組
語句在循環(huán)中會(huì)被重復(fù)執(zhí)行。
for 循環(huán)
如果您需要重復(fù)執(zhí)行相同的語句,您可以設(shè)定一個(gè)循環(huán)。
如果您知道要循環(huán)的次數(shù),您可以使用 for 循環(huán)。這種類型的循環(huán)在向上計(jì)數(shù)或向下計(jì)數(shù)時(shí)特別有用:
實(shí)例
<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 循環(huán)
如果您使用的是集合或者數(shù)組,您會(huì)經(jīng)常用到 for each 循環(huán)。
集合是一組相似的對(duì)象,for each 循環(huán)可以遍歷集合直到完成。
下面的實(shí)例中,遍歷 asp.net request.servervariables 集合。
實(shí)例
<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 循環(huán)
while 循環(huán)是一個(gè)通用的循環(huán)。
while 循環(huán)以 while 關(guān)鍵字開始,后面緊跟著括號(hào),您可以在括號(hào)里規(guī)定循環(huán)將持續(xù)多久,然后是重復(fù)執(zhí)行的代碼塊。
while 循環(huán)通常會(huì)設(shè)定一個(gè)遞增或者遞減的變量用來計(jì)數(shù)。
下面的實(shí)例中,+= 運(yùn)算符在每執(zhí)行一次循環(huán)時(shí)給變量 i 的值加 1。
實(shí)例
<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>
數(shù)組
當(dāng)您要存儲(chǔ)多個(gè)相似變量但又不想為每個(gè)變量都創(chuàng)建一個(gè)獨(dú)立的變量時(shí),可以使用數(shù)組來存儲(chǔ):
實(shí)例
@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>