我有一個模型,當我在視圖中顯示時,我想以特定方式對其進行格式化。在MVC視圖中格式化數字
[DisplayFormat(DataFormatString = "{### ##}")]
[Display(Name = "Postnr")]
public string CustomerZip;
視圖
:「輸入字符串的正確的格式是不是:
@Html.DisplayFor(modelItem => item.CustomerZip)
在DB嘗試這種方法,當值存儲爲#####,所以我得到一個錯誤」。我想(或者希望)DataFormatString會爲我重新格式化字符串。
有關如何做到這一點最好的方式的任何建議表示讚賞。