ASP.NET Razor VB 逻辑
asp.net razor - vb 逻辑条件
编程逻辑:根据条件执行代码。
if 条件
vb 允许根据条件执行代码。
使用 if 语句来判断条件。根据判断结果,if 语句返回 true 或者 false:
- if 语句开始一个代码块
- 条件写在 if 和 then 之间
- 如果条件为真,if ... then 和 end if 之间的代码被执行
实例
@code
dim price=50
end code
<html>
<body>
@if price>30 then
@<p>the price is too high.</p>
end if
</body>
</html>
dim price=50
end code
<html>
<body>
@if price>30 then
@<p>the price is too high.</p>
end if
</body>
</html>
else 条件
if 语句可以包含 else 条件。
else 条件定义了当条件为假时被执行的代码。
实例
@code
dim price=20
end code
<html>
<body>
@if price>30 then
@<p>the price is too high.</p>
else
@<p>the price is ok.</p>
end if
</body>
</htmlv>
dim price=20
end code
<html>
<body>
@if price>30 then
@<p>the price is too high.</p>
else
@<p>the price is ok.</p>
end if
</body>
</htmlv>
注释:在上面的实例中,如果第一个条件为真,if 块的代码将会被执行。else 条件覆盖了除 if 条件之外的"其他所有情况"。
elseif 条件
多个条件判断可以使用 elseif 条件:
实例
@code
dim price=25
end code
<html>
<body>
@if price>=30 then
@<p>the price is high.</p>
elseif price>20 and price<30
@<p>the price is ok.</p>
else
@<p>the price is low.</p>
end if
</body>
</html>
dim price=25
end code
<html>
<body>
@if price>=30 then
@<p>the price is high.</p>
elseif price>20 and price<30
@<p>the price is ok.</p>
else
@<p>the price is low.</p>
end if
</body>
</html>
在上面的实例中,如果第一个条件为真,if 块的代码将会被执行。
如果第一个条件不为真且第二个条件为真,elseif 块的代码将会被执行。
elseif 条件的数量不受限制。
如果 if 和 elseif 条件都不为真,最后的 else 块(不带条件)覆盖了"其他所有情况"。
select 条件
select 块可以用来测试一些单独的条件:
实例
@code
dim weekday=datetime.now.dayofweek
dim day=weekday.tostring()
dim message=""
end code
<html>
<body>
@select case day
case "monday"
message="this is the first weekday."
case "thursday"
message="only one day before weekend."
case "friday"
message="tomorrow is weekend!"
case else
message="today is " & day
end select
<p>@message</p>
</body>
</html>
dim weekday=datetime.now.dayofweek
dim day=weekday.tostring()
dim message=""
end code
<html>
<body>
@select case day
case "monday"
message="this is the first weekday."
case "thursday"
message="only one day before weekend."
case "friday"
message="tomorrow is weekend!"
case else
message="today is " & day
end select
<p>@message</p>
</body>
</html>
"select case" 后面紧跟着测试值(day)。每个单独的测试条件都有一个 case 值和任意数量的代码行。如果测试值与 case 值相匹配,相应的代码行被执行。
select 块有一个默认的情况(case else),当所有的指定的情况都不匹配时,它覆盖了"其他所有情况"。