码迷,mamicode.com
首页 > 其他好文 > 详细

GridView 绑定数据的常用指定格式。

时间:2014-07-27 10:44:12      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

形式

语法

结果

注释

数字

{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-25 10:30:00

 

时间

{0:T}

10:30:00

 

在GridView中操作的时候要注意以下的几个方面(以{0:d}为例)

1.要绑定的列如果单纯的是boundfiled类型的(如下)

<asp:BoundField DataField="sj" HeaderText="时间" ReadOnly="True" DataFormatString="{0:d}" />

显示出来的格式还是2006-11-25 0:00:00 为达到我们想要的效果

2.要绑定的列必须是模板列如下:这样才能看到我们想要看到的效果:2006-11-25

<asp:TemplateField HeaderText="时间">

   <EditItemTemplate>

          <asp:Label ID="Label1" runat="server" Text=‘<%# Eval("sj", "{0:d}") %>‘></asp:Label>

</EditItemTemplate>

<ItemTemplate>

          <asp:Label ID="Label2" runat="server" Text=‘<%# Bind("sj", "{0:d}") %>‘></asp:Label>

</ItemTemplate>

</asp:TemplateField>

GridView 绑定数据的常用指定格式。

标签:

原文地址:http://www.cnblogs.com/leeairw/p/3870784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!