- datetime
-
二十七个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 分=currenttim...