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

C# 實例 If Else 條件

c# 實例

 if else 條件

@{var price=20;}
<html>
<body>
@if (price>30)
    {
    <p>the price is too high.</p>
    }
    else
    {    
    <p>the price is ok.</p>
    }

</body>
</html>

相關文章