您的位置:首页 > 其它

GridView中数字列格式汇总

2009-03-25 16:51 134 查看
利用BoundField.DataFormatString 属性,实现起来比较简单,不过要注意的是,必须和HtmlEncode="False"联合起来用,否则DataFormatString 不起作用

例1:

<asp:BoundField DataField="Total" HeaderText="Total" DataFormatString="{0:n2}" HtmlEncode="False" />

例2: 使用模版

<asp:textbox id="TextBoxPrice" text='<%# Bind("Price", "{0:c}") %>' runat="server"/>

string aa = money.ToString("#,##0");

string s=i.ToString("###,###.00");

String.Format("{0:N}", i )

string.Format("{0:#,#}",Convert.ToInt32(GetBoundData("Price")));

GetBoundData("Price").ToString("N2");

形式语法结果注释
数字{0:N2}12.36
数字{0:N0}13
货币{0:c2}$12.36
货币{0:c4}$12.3656
货币"¥{0:N2}"¥12.36
科学计数法{0:E3}1.23E+001
百分数{0:P}12.25%P and p present the same.
日期{0:D}2006年11月25日
日期{0:d}2006-11-25
日期{0:f}2006年11月25日 10:30
日期{0:F}2006年11月25日 10:30:00
日期{0:s}2006-11-26 10:30:00
时间{0:T}10:30:00
在设置GridView数据绑定控件的模版列时,总要设置显示的格式,
这里是我查询一些资料后统计出来的。还有一个常规的选项是用数据库中默认的格式显示。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: