If I have a decimal value in a field, and I am trying to display on a page, how do I format it (I would use string.format in web forms):
@Html.DisplayFor(Fun
I wouldn't do this inside the view. It would be better to centralize this and provide this information as metadata as below:
public class Foo { [DisplayFormat(DataFormatString = "{0:n0}")] public decimal Bar { get; set; } }
Then use this as usual:
@Html.DisplayFor(m => m.Bar)