有人可以帮助我,我有以下内容:
double num2 = Convert.ToDouble(tb.Text.Substring(iOp + 1, tb.Text.Length - iOp - 2));
我希望编辑在文本字段中显示金额。我尝试过以下方法:
double num2 = Convert.ToDouble(tb.Text.Substring(iOp + 1, tb.Text.Length - iOp - 1));
我收到以下错误:
@Html.Editor("entities[" + @k + "].Amount", entity.Amount)
有什么建议吗? 谢谢!
答案 0 :(得分:4)
我使用的是TextBox而且效果很好=)
@Html.TextBox("entities[" + @k + "].Amount", entity.Amount, new { htmlAttributes = new { @class = "text-field" } })