精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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>


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>

注釋:在上面的實例中,如果第一個條件為真,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>

在上面的實例中,如果第一個條件為真,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>

"select case" 后面緊跟著測試值(day)。每個單獨的測試條件都有一個 case 值和任意數量的代碼行。如果測試值與 case 值相匹配,相應的代碼行被執行。

select 塊有一個默認的情況(case else),當所有的指定的情況都不匹配時,它覆蓋了"其他所有情況"。


相關文章