首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

ASP中日期转换8位字符解决方案

2012-03-19 
ASP中日期转换8位字符在ASP中我现在想把当前日期date()返回的值转换为8为字符,语句应该怎么写?如cstr(date

ASP中日期转换8位字符
在ASP中我现在想把当前日期date()返回的值转换为8为字符,语句应该怎么写?
如cstr(date())返回的是 "2007-6-25 ",怎么让他返回 "20070625 "?

[解决办法]
<%
'格式化日期
Function Formatdate(thedate)
dYear = Year(thedate)
dMonth = Month(thedate)
dDay = Day(thedate)
Formatdate = dYear&Right( "0 "&dMonth, "2 ")&Right( "0 "&dDay, "2 ")
End Function
%>

热点排行