ASP.NET Razor VB 循環(huán)和數(shù)組

asp.net razor - vb 循環(huán)和數(shù)組

語句在循環(huán)中會被重復執(zhí)行。

for 循環(huán)

如果您需要重復執(zhí)行相同的語句,您可以設定一個循環(huán)。

如果您知道要循環(huán)的次數(shù),您可以使用 for 循環(huán)。這種類型的循環(huán)在向上計數(shù)或向下計數(shù)時特別有用:

實例

<html>
<body>
@for i=10 to 21
@<p>line #@i</p>
next i
</body>
</html>


for each 循環(huán)

如果您使用的是集合或者數(shù)組,您會經(jīng)常用到 for each 循環(huán)。

集合是一組相似的對象,for each 循環(huán)可以遍歷集合直到完成。

下面的實例中,遍歷 asp.net request.servervariables 集合。

實例

<html>
<body>
<ul>
@for each x in request.servervariables
@<li>@x</li>
next x
</ul>
</body>
</html>


while 循環(huán)

while 循環(huán)是一個通用的循環(huán)。

while 循環(huán)以 while 關(guān)鍵字開始,后面緊跟著括號,您可以在括號里規(guī)定循環(huán)將持續(xù)多久,然后是重復執(zhí)行的代碼塊。

while 循環(huán)通常會設定一個遞增或者遞減的變量用來計數(shù)。

下面的實例中,+= 運算符在每執(zhí)行一次循環(huán)時給變量 i 的值加 1。

實例

<html>
<body>
@code
dim i=0
do while i<5
i += 1
@<p>line #@i</p>
loop
end code

</body>
</html>


數(shù)組

當您要存儲多個相似變量但又不想為每個變量都創(chuàng)建一個獨立的變量時,可以使用數(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>


相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频