ASP中格式化时间短日期补0变两位长日期的方法(asp 时间差)墙裂推荐

随心笔谈11个月前发布 admin
87 0


<%

Rem Pw_Sys 日期格式转换函数

function DateTimeFormat(DateTime,Format)
select case Format
case “1”
DateTimeFormat=””&year(DateTime)&”年”&month(DateTime)&”月”&Right(“0″ & Day(DateTime),2)&”日”
case “2”
DateTimeFormat=””&month(DateTime)&”月”&Right(“0″ & Day(DateTime),2)&”日”
case “3”
DateTimeFormat=””&year(DateTime)&”-“&month(DateTime)&”-“&Right(“0″ & Day(DateTime),2)&””
case “4”
DateTimeFormat=””&year(DateTime)&”/”&month(DateTime)&”/”&Right(“0″ & Day(DateTime),2)&””
case “5”
DateTimeFormat=””&month(DateTime)&”/”&Right(“0″ & Day(DateTime),2)&””
case “6”
DateTimeFormat=””&year(DateTime)&”年”&month(DateTime)&”月”&Right(“0” & Day(DateTime),2)&”日<font color=red> “&FormatDateTime(DateTime,4)&”</font>”
case “7”
temp=”星期日,星期一,星期二,星期三,星期四,星期五,星期六”
temp=split(temp,”,”)
DateTimeFormat=temp(WeekRight(“0” & Day(DateTime),2)-1)
case “8”
DateTimeFormat=””&month(DateTime)&”-“&Right(“0″ & Day(DateTime),2)&””
case “9”
if len(hour(DateTime))=1 then
str=”0″&hour(DateTime)
else
str=hour(DateTime)
end if
DateTimeFormat=DateTimeFormat(DateTime,1)&” “&str&”:”&Minute(DateTime)
case “10”
DateTimeFormat=””&year(DateTime)&”年”&month(DateTime)&”月”
case else
DateTimeFormat=DateTime
end select
end function

%>

© 版权声明

相关文章