我正在尝试在剃刀视图中添加2个变量。我在web.config文件中为Value1和Value2分配了一些固定值。但是,与其使用下面的代码进行连接而不是添加值(而不是添加10 + 10 = 20,我得到的是1010)。
@model Myproject.Models.Cost
@{
ViewBag.Title = "About";
var addvalue1 = ConfigurationManager.AppSettings["Value1"];
var addvalue2 = ConfigurationManager.AppSettings["Value2"];
var total = addvalue1 + addvalue2;
}
<h2>@ViewBag.Title.</h2>
<h3>@ViewBag.Message</h3>
@using (Html.BeginForm())
{
<p>Your total is : @total</p>
}