如何格式化gridview列?

发布于 2024-11-11 17:55:32 字数 335 浏览 4 评论 0原文

下面是我的代码:

var grid = new GridView();
grid.DataSource = myDataset;

grid.DataBind();

我想将网格的某些列格式化为带有千位分隔符和小数点的货币,例如“$9,999,999.99”。

我正在将网格导出到 Excel,我想查看货币格式的值。

我正在运行时创建 gridview 。我的 gridview 没有 html 代码。

我只是将数据集绑定到 gridview 并导出到 Excel。我不会看到 HTML 格式的 gridview。

怎么做呢?

Below is my code:

var grid = new GridView();
grid.DataSource = myDataset;

grid.DataBind();

I want to format some of the columns of my grid to Currency with thousand separator and with decimal like '$9,999,999.99'.

I am exporting the grid to excel and I want to see the values in currency format.

I am creating gridview during runtime. I have no html code for my gridview.

I am just bounding dataset to gridview and exporting to excel. I won't see gridview in HTML format.

How to do that?

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

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

发布评论

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

评论(2

神爱温柔 2024-11-18 17:55:32

使用适当的 DataFormatString 为货币列创建一个 BoundField。

<asp:BoundField  DataField="currencyColumnName" DataFormatString="{0:c}" />

Create a BoundField for the currency column with appropriate DataFormatString.

<asp:BoundField  DataField="currencyColumnName" DataFormatString="{0:c}" />
雨轻弹 2024-11-18 17:55:32

谷歌把我带到这里,所以我想分享我的答案。以下是我如何在 ASP.NET 中将一个单元格格式化为货币。

With Me.ratesGridView
        .Rows(i).Cells(4).Text = FormatCurrency(.Rows(i).Cells(4).Text)
End With

享受。

Google brought me here, so I thought I'd share my answer. Here's how I got to format one cell to currency in asp.net.

With Me.ratesGridView
        .Rows(i).Cells(4).Text = FormatCurrency(.Rows(i).Cells(4).Text)
End With

Enjoy.

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