有时候我们要对时间进行转换,达到不同的显示效果

  默认格式为:2005-6-6 14:33:34

  如果要换成成200506,06-2005,2005-6-6或更多的该怎么办呢?

  我们要用到:

DateTime.ToString的方法(String, IFormatProvider)
using System;
using System.Globalization;
String format="D";
DateTime date=DataTime,Now;
Response.Write(date.ToString(format, DateTimeFormatInfo.InvariantInfo));

  结果输出  Thursday, June 16, 2005

  参数format格式详细用法:

  格式字符 关联属性/说明

  d ShortDatePattern

  D LongDatePattern

  f 完整日期和时间(长日期和短时间)

  F FullDateTimePattern(长日期和长时间)

  g 常规(短日期和短时间)

  G 常规(短日期和长时间)

  m、M MonthDayPattern

  r、R FC1123Pattern

  s 使用当地时间的 SortableDateTimePattern(基于 ISO 8601)

  t ShortTimePattern

  T LongTimePattern

  u UniversalSortableDateTimePattern 用于显示通用时间的格式

  U 使用通用时间的完整日期和时间(长日期和长时间)

  y、Y YearMonthPattern

  下表列出了可被合并以构造自定义模式的模式。

  这些模式是区分大小写的;例如,识别“MM”,但不识别“mm”。

  如果自定义模式包含空白字符或用单引号括起来的字符,

  则输出字符串页也将包含这些字符.

  未定义为格式模式的一部分或未定义为格式字符的字符按其原义复制。