在 CurrentCulture 的函数中,我想要数字类型“int”的千分位和逗号。我正在尝试使用 DataFormtString 但它不起作用。例如:1234567 ==> 123.456.789
我正在使用 MVC,我想在表格、输入等中格式化数字。
.Replace() 或类似的东西不是解决方案,我希望它具有 CurrentCulture 的功能。
例如:
[DisplayName("Test")]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:N}")] // Not working
public int? Example{ get; set; }
在视图中:
<span class="text">@Model.Example</span>
<input asp-for="Example" class="form-control form-control-sm" />