model.CurrentBa-6ren">
gpt4 book ai didi

c# - TextBoxFor 上货币的 String.Format

转载 作者:IT王子 更新时间:2023-10-29 04:41:29 25 4
gpt4 key购买 nike

我正在尝试将 @String.Format("{0:0.00}",Model.CurrentBalance) 放入此 @Html.TextBoxFor(model => model.CurrentBalance, new { @class = "required numeric", id = "CurrentBalance"})

我只想让货币在我的文本框中显示为 .00,但我没有运气。关于如何执行此操作的任何想法?

最佳答案

string.format("{0:c}", Model.CurrentBalance) 应该为您提供货币格式。

@Html.TextBoxFor(model => model.CurrentBalance, new { @class = "required numeric", id = "CurrentBalance", Value=String.Format("{0:C}",Model.当前余额) })

关于c# - TextBoxFor 上货币的 String.Format,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6963497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com