我的数据库中有一个价格字段为整数
现在我通过我的模型来查看和显示价格:
@Html.DisplayFor(modelItem => item.price)
我如何才能看到千位分隔符的价格?
tnx
最佳答案
将 DisplayFormat
属性应用于您的模型属性:
[DisplayFormat(DataFormatString = "{0:N2}")]
public decimal Cost { get; set; }
然后由 ModelBinder 为您完成格式化,而您不必记住在每个单独的 View 中进行格式化。
关于asp.net-mvc - asp.net mvc : thousand separator for int value,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24120900/