精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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>

相關文章