案例:ASP.net案例     状态:不可编辑再运行    进入竖版
 运行结果 
AخA
 
1
@Code
2
Dim price=25
3
End Code
4
<html>
5
<body>
6
@if price>=30 Then
7
    @<p>The price is high.</p>
8
ElseIf price>20 And price<30 then  
9
    @<p>The price is OK.</p>
10
Else
11
    @<p>The price is low.</p>
12
End If
13
</body>
14
</html>