C# 实例 Else If 条件
c# 实例
else if 条件
@{var price=25;}
<html>
<body>
if (price>=30)
{
<p>the price is high.</p>
}
else if (price>20 && price<30)
{
<p>the price is ok.</p>
}
else
{
<p>the price is low.</p>
}
</body>
</html>
相关文章
- ASP.NET Web Pages 全局文件
- ASP.NET Web Pages 对象
- ASP.NET Web Pages PHP
- ASP.NET Web Pages – 发布
- ASP.NET Razor C# 变量
- ASP.NET MVC 参考手册
- WebSecurity HasUserId 属性
- WebSecurity IsAuthenticated 属性
- WebSecurity CreateUserAndAccount 方法
- WebSecurity RequireUser 方法
- HTML Image
- HTML InputImage
- ASP.NET HTML 控件 Button 2
- ASP.NET HTML 控件 Checkbox
- ASP.NET HTML 控件 Literal 2
- ASP.NET HTML 控件 CompareValidator 2
- ASP.NET HTML 控件 CustomValidator
- ASP.NET HTML 控件 RequiredFieldValidator
- ASP.NET HTML 控件 SortedList RadiobuttonList 2
- 基本的 HTML 表单