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>