-2
テーブル内のビューで表示および編集する小数フィールドがあります。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文字があり、ユーザーはフォームを送信する前にそれらを削除する必要があります。 どうすればよいですか?