asp中我想取时间如2009-8-4 16:03:04中数字,但用cstr函数或别的转化后都是2009841634,请问怎样才能使其变为“200984160304”?也就是时间中数字小于10时也显示两位。
<%
str=now
str=replace(str," ","")
str=replace(str,"-","")
str=replace(str,":","")
str=replace(str,"上午","")
str=replace(str,"下午","")
response.write str
%>
'***************************************************
'函 数 名:getYYYYMMDDHHIISS
'作 用:根据给定的日期和时间型数据将其转换为YYYYMMDDHHIISS字符串格式
'参 数:d 日期型数据,t 时间型数据
'返 回 值:转换后的字符串
'***************************************************
Function GetYYYYMMDDHHIISS(d,t)
YYYY=Year(d)
MM=Month(d)
DD=Day(d)
HH=Hour(t)
II=Minute(t)
SS=Second(t)
If Len(YYYY) =2 then
YYYY="20" & YYYY
End If
If Len(MM)=1 then
MM="0" & MM
End If
If Len(DD)=1 then
DD="0" & DD
End If
If Len(HH)=1 then
HH="0" & HH
End If
If Len(II)=1 then
II="0" & II
End If
If Len(SS)=1 then
SS="0" & SS
ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日ASP编码教程:asp缓存的分类
[ASP]2015年4月15日ASP编码教程:何谓ASP缓存/为什么要缓存
[ASP]2015年4月15日ASP编码教程:asp实现的sha1加密解密代码
[ASP]2015年4月15日ASP编码教程:asp执行带参数的sql语句实例
[ASP]2015年4月14日