C# 实例 If 条件

c# 实例

 if 条件

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

</body>
</html>

相关文章