1. 數(shù)據(jù)控件綁定時(shí)格式化日期方法:
復(fù)制代碼 代碼如下:
asp:BoundColumn DataField="AddTime" HeaderText="添加時(shí)間" DataFormatString="{0:yyyy-MM-dd HH:mm}>/asp:BoundColumn>
asp:BoundField DataField="AddTime" HeaderText="添加時(shí)間" DataFormatString="{0:yyyy-MM-dd}" />
2. 用DataBinder.Eval進(jìn)行數(shù)據(jù)綁定時(shí):
復(fù)制代碼 代碼如下:
DataBinder.Eval(Container.DataItem,"AddTime","{0:yyyy-MM-dd}")
3. 直接用ToString方法轉(zhuǎn)換日期顯示格式:
復(fù)制代碼 代碼如下:
DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
4. 用String類轉(zhuǎn)換日期顯示格式:
復(fù)制代碼 代碼如下:
String.Format("{0:yyyy-MM-dd}", DateTime.Now)
5. 用DateTime.Parse方法轉(zhuǎn)換日期顯示格式
復(fù)制代碼 代碼如下:
DateTime.Parse("2012-2-22").ToString("yyyy-MM-dd")
6. 用Convert.ToDateTime方法轉(zhuǎn)換日期顯示格式:
復(fù)制代碼 代碼如下:
Convert.ToDateTime("2012-12-21").ToString("yyyy-MM-dd")
標(biāo)準(zhǔn) DateTime 格式說明符
http://msdn.microsoft.com/zh-cn/library/az4se3k1(v=vs.80).aspx
自定義 DateTime 格式說明符
http://msdn.microsoft.com/zh-cn/library/8kb3ddd4(v=vs.80).aspx
您可能感興趣的文章:- asp.net DataFormatString格式化GridView
- asp.net IList查詢數(shù)據(jù)后格式化數(shù)據(jù)再綁定控件
- asp.net中各種類型的JSON格式化
- ASP.NET GridView控件在列上格式化時(shí)間及DataFormatString使用
- asp.net頁面中時(shí)間格式化的示例
- asp.net+js實(shí)現(xiàn)金額格式化
- 在ASP.NET 2.0中操作數(shù)據(jù)之十一:基于數(shù)據(jù)的自定義格式化
- 在ASP.NET 2.0中操作數(shù)據(jù)之二十七:創(chuàng)建自定義排序用戶界面
- 在ASP.NET 2.0中操作數(shù)據(jù)之二十八:GridView里的Button
- 在ASP.NET 2.0中操作數(shù)據(jù)之二十九:用DataList和Repeater來顯示數(shù)據(jù)
- 在ASP.NET 2.0中操作數(shù)據(jù)之三十:格式化DataList和Repeater的數(shù)據(jù)