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>

相关文章