<% '----日期轉化函數----- function wf_DateToChar(datetime,l) '---------說明------------ 'datetime是你要轉化的日期值 'l是你要轉化到的層次,可設為"d"、"n"和"s" '"d"是指轉化為yyyy-mm-dd形式 '"n"是指轉化為yyyy-mm-dd hh:mm形式 '"s"是指轉化為yyyy-mm-dd hh:mm:ss形式 '"long"是指轉化為yyyy年mm月dd日的形式 '"no"是指轉化為yyyymmdd的形式 '"short"是指轉化為yymmdd的形式 '"t"是指轉化為yymmdd hh:mm的形式 '------------------------- dim ls_date,ls_getstr if isnull(l) or trim(l)="" then l="s" if isdate(datetime) then ls_date=cstr(datetime) 'writelnls_date ls_getstr=DatePart("yyyy",cdate(ls_date)) ls_getstr=ls_getstr & "-" & wf_ctonstr(DatePart("m",cdate(ls_date)),2) ls_getstr=ls_getstr & "-" & wf_ctonstr(DatePart("d",cdate(ls_date)),2) if l="d" then wf_DateToChar=ls_getstr ls_getstr=ls_getstr & " " & wf_ctonstr(DatePart("h",cdate(ls_date)),2) ls_getstr=ls_getstr & ":" & wf_ctonstr(DatePart("n",cdate(ls_date)),2) if l="n" then wf_DateToChar=ls_getstr ls_getstr=ls_getstr & ":" & wf_ctonstr(DatePart("s",cdate(ls_date)),2) if l="s" then wf_DateToChar=ls_getstr if l="long" then wf_DateToChar=DatePart("yyyy",cdate(ls_date))&"年"&wf_ctonstr(DatePart("m",cdate(ls_date)),2)&"月"&wf_ctonstr(DatePart("d",cdate(ls_date)),2)&"日" if l="no" then wf_DateToChar=DatePart("yyyy",cdate(ls_date))&wf_ctonstr(DatePart("m",cdate(ls_date)),2)&wf_ctonstr(DatePart("d",cdate(ls_date)),2) if l="short" then wf_DateToChar=right(DatePart("yyyy",cdate(ls_date)),2)&wf_ctonstr(DatePart("m",cdate(ls_date)),2)&wf_ctonstr(DatePart("d",cdate(ls_date)),2) if l="t" then wf_DateToChar=wf_ctonstr(DatePart("m",cdate(ls_date)),2)&wf_ctonstr(DatePart("d",cdate(ls_date)),2)&" "& wf_ctonstr(DatePart("h",cdate(ls_date)),2)& ":" & wf_ctonstr(DatePart("n",cdate(ls_date)),2)
else wf_DateToChar=Null end if
end function '----把一位整數轉化為兩位整數----"1" to "01" function wf_ctonstr(num,n) if not IsNumeric(num) then wf_ctonstr=num else if len(cstr(cint(num)))>=n then wf_ctonstr=cstr(cint(num)) else wf_ctonstr="0"&cstr(cint(num)) while len(wf_ctonstr)<n wf_ctonstr="0"&cstr(wf_ctonstr) wend end if end if end function '-----------------------------------
%>
|