代码编辑器:
x
1
@Code
2
Dim price=20
3
End Code
4
<!DOCTYPE html>
5
<meta charset="utf-8"/>
6
@if price>30 Then
7
@<p>The price is too high.</p>
8
Else
9
@<p>The price is OK.</p>
10
End If
11
@Code
Dim price=20
End Code
<!DOCTYPE html>
<meta charset="utf-8"/>
@if price>30 Then
@<p>The price is too high.</p>
Else
@<p>The price is OK.</p>
End If