在MVC视图中发布后,十进制字段无法正常工作

时间:2017-12-04 09:32:37

标签: asp.net-mvc

我在表格的视图中显示和编辑了一些小数字段。

<td>@Html.EditorFor(model => model[i].Score, new { htmlAttributes = new { @class = "form-control" } })</td>
<td>@Html.EditorFor(model => model[i].Cost, new { htmlAttributes = new { @class = "form-control", @type = "text" } })</td>**

在我将它发布到我的服务器之前,它们工作得很好。但是,当我在服务器上发布项目时,每个字段的末尾都有一个/ 00字符,用户必须在提交表单之前删除它们。 我该怎么办?

I apologize that the form is in Persian format.

1 个答案:

答案 0 :(得分:0)

我应该添加

    <globalization culture="en-us" uiCulture="en-us" />

<system.web>

中的Web.config