案例:ASP.net案例     状态:不可编辑再运行    进入竖版
 运行结果 
AخA
 
1
@{
2
var totalMessage = "";
3
if(IsPost)
4
    {
5
    var num1 = Request["text1"];
6
    var num2 = Request["text2"];
7
    var total = num1.AsInt() + num2.AsInt();
8
    totalMessage = "Total = " + total;
9
}
10
}
11
<!DOCTYPE html>
12
<html>
13
<body style="background-color: beige; font-family: Verdana, Arial;">
14
<form action="" method="post">
15
<p><label for="text1">First Number:</label><br>
16
<input type="text" name="text1"></p>
17
<p><label for="text2">Second Number:</label><br>
18
<input type="text" name="text2"></p>
19
<p><input type="submit" value=" Add "></p>
20
</form>
21
<p>@totalMessage</p>
22
</body>
23
</html>