黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

VB 實(shí)例 Select 條件

vb 實(shí)例

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>

相關(guān)文章