VB 实例 Else If 条件

vb 实例

else if 条件

@code
dim price=25
end code
<html>
<body>
@if price>=30 then
    @<p>the price is high.</p>
elseif price>20 and price<30 then  
    @<p>the price is ok.</p>
else
    @<p>the price is low.</p>
end if

</body>
</html>

相关文章