Board logo

标题: [ASP] Asp.Net日期时间格式设置 [打印本页]

作者: 紫樱90    时间: 2011-3-4 16:25     标题: Asp.Net日期时间格式设置

1、datetime 数字型
system.datetime currenttime=new system.datetime();

1.1 取当前年月日时分秒
currenttime=system.datetime.now;
1.2 取当前年
int 年=currenttime.year;
1.3 取当前月
int 月=currenttime.month;
1.4 取当前日
int 日=currenttime.day;
1.5 取当前时
int 时=currenttime.hour;
1.6 取当前分
int 分=currenttime.minute;
1.7 取当前秒
int 秒=currenttime.second;
1.8 取当前毫秒
int 毫秒=currenttime.millisecond;
(变量可用中文)

1.9 取中文日期显示——年月日时分
string stry=currenttime.tostring("f"); //不显示秒

1.10 取中文日期显示_年月
string strym=currenttime.tostring("y");

1.11 取中文日期显示_月日
string strmd=currenttime.tostring("m");

1.12 取中文年月日
string strymd=currenttime.tostring("d");

1.13 取当前时分,格式为:14:24
string strt=currenttime.tostring("t");

1.14 取当前时间,格式为:2003-09-23t14:46:48
string strt=currenttime.tostring("s");

1.15 取当前时间,格式为:2003-09-23 14:48:30z
string strt=currenttime.tostring("u");

1.16 取当前时间,格式为:2003-09-23 14:48
string strt=currenttime.tostring("g");

1.17 取当前时间,格式为:tue, 23 sep 2003 14:52:40 gmt
string strt=currenttime.tostring("r");

1.18获得当前时间 n 天后的日期时间
datetime newday = datetime.now.adddays(100);
作者: zhzhuguli    时间: 2011-10-22 10:38

好像很难的说……觉得ASP好学点……
作者: besteast    时间: 2011-10-28 17:29


作者: qnkpn    时间: 2012-5-7 17:22

好!!!!!!!
作者: 开心小龟    时间: 2012-6-22 13:21

终于看完了~~~
作者: 清水菱    时间: 2012-6-27 13:54

看过,的确不错。谢谢楼主
作者: www.lctzw.com    时间: 2012-8-2 01:08

终于看完了~~~
作者: 王道的王道    时间: 2012-8-21 12:15

呵呵,支持一下!
作者: www.psp151.com    时间: 2012-9-24 11:18

顶!!!!!!!




欢迎光临 逐梦论坛 (http://temp2023.zhumeng.org/) Powered by Discuz! 7.2