VB 实例 Select 条件
vb 实例
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>
相关文章
- ASP.NET 教程
- ASP.NET Web Pages Email
- ASP.NET Web Pages WebMail 参考手册
- ASP.NET Razor VB 循环和数组
- ASP.NET MVC 模型
- ASP.NET MVC – 发布
- ASP.NET Repeater 控件
- ASP.NET DataList 控件
- ASP.NET 实例
- ASP.NET CheckBoxList 控件
- ASP.NET Image 控件
- ASP.NET ListBox 控件
- ASP.NET Panel 控件
- WebSecurity GetUserId 方法
- WebSecurity Logout 方法
- HTML Inputbutton
- ASP.NET HTML 控件 ImageButton
- ASP.NET HTML 控件 数据库链接 - 绑定一个 Repeater 控件
- C# 实例 实例解释
- C# 实例 For Each 循环