MVC에 Model에서 데이터어노테이션을 통해서, 모델의 표시를 바꿔보도록 합니다. public class CostChart { public string itemType { get; set; } [DataType(DataType.Currency)] public float? Cost{ get; set; } } Alternatively, you could use?DataFormatString?like this: [DisplayFormat(DataFormatString = "{0:C0}")]` public float? Cost{ get; set; } But I prefer to set the display format with?EditorFor. Here's a great tutorial on Extendin..