Format a decimal in a view

后端 未结 3 510
暗喜
暗喜 2021-01-17 10:05

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         


        
3条回答
  •  再見小時候
    2021-01-17 10:17

    dont do in DisplayFor... in the class set the atributte like this one.

    [DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:N2}")]
        public virtual decimal Valor
        {
            get;
            set;
        }
    

提交回复
热议问题