您当前的位置:首页 > 编程技术

ASP.NETRazorVB逻辑

时间:2021-07-26 16:10:56  来源:网络    编辑:本站  点击:

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),当所有的指定的情况都不匹配时,它覆盖了"其他所有情况"。

以上就是 ASP.NET Razor VB 逻辑条件的使用介绍。

点赞
返回首页
返回
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
栏目导航

| 传统文化 | 武术天地 | 编程技术 | 好听音乐 | 养生中医 | 智慧人生 | 常用工具 | 写作园地 | 影视娱乐 | php专栏 | 道德经专栏 |
最新推荐
python内建函数大全(built-in functions)
python内建函数大…
点击按钮(button)打开新窗口(window)
点击按钮(button)…
帝国cms网络视频引用代码--具体操作教程
帝国cms网络视频引…
相关文章
栏目更新
栏目热门