DateTime ndate = new DateTime(2012, 5, 26, 18, 9, 9); 在中文操作系统中运行
|
描述
| 输出的样式
| 后台代码
| 备注
|
中文年月
| 2012年5月
| Response.Write(ndate.ToString("y"));
|
|
通用年月日
| 2012/5/26
| Response.Write(ndate.ToString("d"));
|
|
中文月日
| 5月26日
| Response.Write(ndate.ToString("M"));
|
|
完整年份
| 2012
| Response.Write(ndate.ToString("yyyy"));
| yyyy务必小写
|
不含纪元的年份
| 12(年份)
| Response.Write(ndate.ToString("yy"));
| yy务必小写
|
全月份
| 05(月份)
| Response.Write(ndate.ToString("MM"));
| MM务必大写
|
中文月份
| 五月(月份)
| Response.Write(ndate.ToString("MMMM"));
| MMMM务必大写
|
日
| 26(日)
| Response.Write(ndate.ToString("dd"));
| dd务必小写
|
中文星期
| 星期六
| Response.Write(ndate.ToString("dddd"));
| dddd务必小写
|
中文星期简
| 周六
| Response.Write(ndate.ToString("ddd"));
| ddd务必小写
|
24小时制时分秒(全)
| 18:05:09
| Response.Write(ndate.ToString("HH:MM:ss"));
| HH只有大写才是24小时制
ss务必小写
|
24小时制时分秒(去0)
| 18:9:9
| Response.Write(ndate.ToString("H:m:s"));
| H只有大写才是24小写制
m,s务必小写
|
12小时制时分秒(全)
| 06:09:09
| Response.Write(ndate.ToString("hh:mm:ss"));
| 只有小写才是12小时制
|
12小时制时分秒(去0)
| 6:9:9
| Response.Write(ndate.ToString("h:m:s"));
| 只有小写才是12小写制
|