@{ var totalMessage = ""; if(IsPost) { var num1 = Request["text1"]; var num2 = Request["text2"]; var total = num1.AsInt() + num2.AsInt(); totalMessage = "Total = " + total; } } <html> <body> <form action="" method="post"> <p><label for="text1">First Number:</label><br> <input type="text" /></p> <p><label for="text2">Second Number:</label><br> <input type="text" /></p> <p><input type="submit" value=" Add " /></p> </form> <p>@totalMessage</p> </body> </html>
输出