在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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、绑定时格式化日期方法: <ASP:BOUNDCOLUMN DATAFIELD= "JoinTime " DATAFORMATSTRING= "{0:yyyy-MM-dd} " > ITEMSTYLE WIDTH= "18% " > </ITEMSTYLE > </ASP:BOUNDCOLUMN > 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 <asp:BoundColumn DataField="收款时间" HeaderText="收款时间" 2 DataFormatString="{0:yyyy-MM-dd HH24:mm:ss}"> 3 </asp:BoundColumn> C#日期格式化8、隐藏代码: 1 protected string CutTime (object time) 2 { 3 System.DateTime currentTime = new System.DateTime(); 4 return Convert.ToDateTime(time).ToString("yy-MM-dd",System.Globalization.DateTimeFormatInfo.InvariantInfo); 5 } 下面是html代码: 1 <td width="10%" align="center" valign="middle"><%# CutTime(DataBinder.Eval(Container, "DataItem.addtime")) %></td>
|
请发表评论