Microsoft.CSharp.RuntimeBinder.RuntimeBinderException:无法转换类型'十进制'到'字符串'在webgrid中

时间:2016-12-16 15:43:57

标签: c# webgrid

我遇到了这个错误,我尝试了许多不同的转换方式(见下文)但没有成功。我需要在webGrid

中使用它

不幸的是,以下所有格式都会返回相同的错误:

 <span id="lblAmount" class="display-mode">Convert.ToString(@item.Amount)</span>
 <span id="lblAmount" class="display-mode">@item.Amount.ToString()</span>
 <span id="lblAmount" class="display-mode">(string)@item.Amount</span>
 <span id="lblAmount" class="display-mode">@String.Format("{0:N2}", @item.Amount)</span>

0 个答案:

没有答案