ASP.NET 中的 Gridview 修剪错误

发布于 2024-11-01 21:34:46 字数 579 浏览 4 评论 0原文

这是我的参考问题; String.Format相同代码不同视图

当我尝试此代码时;

var cultureWithoutCurrencySymbol =
        (CultureInfo)CultureInfo.CurrentCulture.Clone();
            cultureWithoutCurrencySymbol.NumberFormat.CurrencySymbol = "";
            GridView1.FooterRow.Cells[9].Text = String.Format(cultureWithoutCurrencySymbol, "{0:c}", sumMV).Trim();

我遇到这样的错误;

在此处输入图像描述

我该如何解决此问题? 我的代码有问题吗?

This is my reference question; String.Format Same Code Different View

When i try this code;

var cultureWithoutCurrencySymbol =
        (CultureInfo)CultureInfo.CurrentCulture.Clone();
            cultureWithoutCurrencySymbol.NumberFormat.CurrencySymbol = "";
            GridView1.FooterRow.Cells[9].Text = String.Format(cultureWithoutCurrencySymbol, "{0:c}", sumMV).Trim();

I gettin an error like this;

enter image description here

How can i solve this problem?
Is it something wrong in my code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哑剧 2024-11-08 21:34:46

既然您想要没有符号的货币,为什么不简单地使用:

sumVM.ToString()

Since you want currency without symbol why don't simply use:

sumVM.ToString()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文