Html.DisplayFor十进制格式?
我有一个十进制值,例如: 59625879,00
我想显示这样的值: 59.625,879
或59625,879
我怎样才能做到这一点@Html.DisplayFor(x => x.TAll, String.Format())
?
谢谢。
使用[DisplayFormat]
属性装饰您的视图模型属性,并指定所需的格式:
[DisplayFormat(DataFormatString = "{0:N}", ApplyFormatInEditMode = true)] public decimal TAll { get; set; }
然后在你看来:
@Html.DisplayFor(x => x.TAll)
另一种可能性,如果你不想在视图模型上做到这一点,你也可以在视图中做到这一点:
@Model.tAll.ToString("N")
但我会build议你第一种方法。
还有一种可能性是为小数types( ~/Views/Shared/DisplayTemplates/MyDecimalTemplate.cshtml
)编写一个自定义显示模板:
@string.Format("{0:N}", Model)
接着:
@Html.DisplayFor(x => x.TAll, "MyDecimalTemplate")