欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

数据绑定之DataFormatString使用介绍

程序员文章站 2024-02-29 20:59:10
dataformatstring是很多asp.net控件都有的属性,如gridview等等,下面简单介绍一下这个属性。 dataformatstring 属性语法如下: d...
dataformatstring是很多asp.net控件都有的属性,如gridview等等,下面简单介绍一下这个属性。

dataformatstring 属性语法如下:

dataformatstring="{0:格式字符串}"

我们知道在dataformatstring 中的 {0}
表示数据本身,而在冒号后面的格式字符串代表所们希望数据显示的格式;另外在指定的格式符号后可以指定小数所要显示的位数。例如原来的数据为
「1.56」,若格式设定为 {0:n1},则输出为「1.5」。

设定boundfield的dataformatstring,通常有以下几种
dataformatstring= "{0:c}" 货币,货币的格式取决于当前thread中culture的设置
dataformatstring= "{0:e}" 科学计数法
dataformatstring= "{0: p}" 百分比
dataformatstring= "{0:f?}" 小数点后几位
dataformatstring= "{0:d}" m/d/yyyy 如 10/30/2008
dataformatstring= "{0:f}" 长日期,短时间。dddd,mmmm dd,yyyy hh:mm aa 如, monday, january30, 2008 10:00am
dataformatstring= "{0: d}" 长日期。dddd,mmmm dd,yyyy 如: monday,january 30,2008
dataformatstring= "{0:f}" 长日期,长时间 dddd,mmmm dd,yyyy hh:mm:ss aa
dataformatstring= "{0: s}" iso 标准时间。yyyy-mm-ddthh:mm:ss,如: 2008-01-30t10:20:55am
dataformatstring= "{0:m}" 月份和日期 mmmm dd,如january30
dataformatstring= "{0:g}" 一般格式 m/d/yyyy hh:mm:ss aa
-----------------------------------------------------------------
格式字符串 输入 结果
"{0:c}" 12345.6789 $12,345.68
"{0:c}" -12345.6789 ($12,345.68)
"{0:d}" 12345 12345
"{0:d8}" 12345 00012345
"{0:e}" 12345.6789 1234568e+004
"{0:e10}" 12345.6789 1.2345678900e+004
"{0:f}" 12345.6789 12345.68
"{0:f0}" 12345.6789 12346
"{0:g}" 12345.6789 12345.6789
"{0:g7}" 123456789 1.234568e8
"{0:n}" 12345.6789 12,345.68
"{0:n4}" 123456789 123,456,789.0000
"total: {0:c}" 12345.6789 total: $12345.68
常用的日期时间格式:
格式 说明 输出格式
d 精简日期格式 mm/dd/yyyy
d 详细日期格式 dddd, mmmm dd, yyyy
f 完整格式 (long date + short time) dddd, mmmm dd, yyyy hh:mm
f
完整日期时间格式
(long date + long time)
dddd, mmmm dd, yyyy hh:mm:ss
g 一般格式 (short date + short time) mm/dd/yyyy hh:mm
g 一般格式 (short date + long time) mm/dd/yyyy hh:mm:ss
m,m 月日格式 mmmm dd
s 适中日期时间格式 yyyy-mm-dd hh:mm:ss
t 精简时间格式 hh:mm
t 详细时间格式 hh:mm:ss

<%# string.format("{0:yyyy-mm-dd} ", eval("effectivedate "))%>
<%# string.format("{0:yyyy-m-d} ", databinder.eval(container.dataitem, "effectivedate "))%>