C#日期格式化的几种处理方法(转)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#日期格式化的几种处理方法(转)相关的知识,希望对你有一定的参考价值。
参考技术A label 控件: Label1.Text = Convert.ToDateTime(test.Tables[0].Rows[0]["Appl_date"]).ToString("yyyy-MM-dd"); txtRukuTime.Text = string.Format("0:yyyy-MM-dd HH:mm", model.ruku_time); txtRukuTime.Text = Convert.ToDateTime(model.ruku_time).ToString("yyyy-MM-dd HH:mm"); C#日期格式化1、绑定时格式化日期方法: ITEMSTYLE WIDTH= "18% " > C#日期格式化2、数据控件如DataGrid/DataList等的件格式化日期方法: e.Item.Cell[0].Text = Convert.ToDateTime(e.Item.Cell[0].Text).ToShortDateString(); C#日期格式化3、用String类转换日期显示格式: String.Format( "yyyy-MM-dd ",yourDateTime); C#日期格式化4、用Convert方法转换日期显示格式: Convert.ToDateTime("2005-8-23").ToString ("yyMMdd",System.Globalization.DateTimeFormatInfo.InvariantInfo); //支持繁体数据库 C#日期格式化5、直接用ToString方法转换日期显示格式: DateTime.Now.ToString("yyyyMMddhhmmss"); DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss") C#日期格式化6、只显示年月 : DateTime.Now.ToString("yyyyMMddhhmmss"); DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss") C#日期格式化7、显示时间所有部分,包括:年月日时分秒 1 3 C#日期格式化8、隐藏代码:1protectedstring CutTime (object time) 2 3 System.DateTime currentTime = new System.DateTime(); 4return Convert.ToDateTime(time).ToString("yy-MM-dd",System.Globalization.DateTimeFormatInfo.InvariantInfo); 5 下面是html代码:1本回答被提问者采纳以上是关于C#日期格式化的几种处理方法(转)的主要内容,如果未能解决你的问题,请参考以下文章
(转)java向MySQL插入当前时间的四种方式和java时间日期格式化的几种方法(案例说明)