@Code
Dim price=25
End Code
<html>
<body>
@if price>=30 Then
@<p>价格偏高。</p>
ElseIf price>20 And price<30 then
@<p>价格可以接受。</p>
Else
@<p>价格偏低。</p>
End If
</body>
</html>