Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
razor 脚本 MVC 3 将小数呈现为整数,用于小数为零的小数
就像 300.00 到 300 和 39.09 一样 39.09
假设是您的视图使用的模型上的Model.Blah一个属性:Decimal
Model.Blah
Decimal
if (Convert.ToInt32(Model.Blah) == Model.Blah) { <p>@Model.Blah.ToString("N0")</p> } else { <p>@Model.Blah.ToString("N2")</p> }