VB 实例 If Else 条件

vb 实例

 if 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>
</html>

相关文章