<td class="col-md-3"> @Html.DisplayFor(model => model.install_order_id) </td>
install_order_id 是数值字段,没有小数位,但是显示的时候就有小数位了,请问如何去除?
[DisplayFormat(DataFormatString = "{0:N0}")] public decimal install_order_id { get; set; }
[DisplayFormat(DataFormatString = "{0:N0}")] public decimal
{ get; set; }
http://feiyun0112.cnblogs.com/