asp

位置:IT落伍者 >> asp >> 浏览文章

关于asp中转化时间为数字、字符串


发布日期:2018年04月02日
 
关于asp中转化时间为数字、字符串

asp中我想取时间如 ::中数字但用cstr函数或别的转化后都是请问怎样才能使其变为?也就是时间中数字小于时也显示两位

<%

str=now

str=replace(str )

str=replace(str)

str=replace(str:)

str=replace(str上午)

str=replace(str下午)

responsewrite str

%>

***************************************************

函 数 名:getYYYYMMDDHHIISS

作 用:根据给定的日期和时间型数据将其转换为YYYYMMDDHHIISS字符串格式

参 数:d 日期型数据t 时间型数据

返 回 值:转换后的字符串

***************************************************

Function GetYYYYMMDDHHIISS(dt)

YYYY=Year(d)

MM=Month(d)

DD=Day(d)

HH=Hour(t)

II=Minute(t)

SS=Second(t)

If Len(YYYY) = then

YYYY= & YYYY

End If

If Len(MM)= then

MM= & MM

End If

If Len(DD)= then

DD= & DD

End If

If Len(HH)= then

HH= & HH

End If

If Len(II)= then

II= & II

End If

If Len(SS)= then

SS= & SS

End If

GetYYYYMMDDHHIISS=YYYY & MM & DD & HH & II & SS

End Function

上一篇:AspNetPager分页

下一篇:ASP文件上传原理分析及实现实例