发布网友 发布时间:2024-10-24 03:02
共2个回答
热心网友 时间:2024-10-27 01:58
在调用之前,判断是不是日期格式
str="20131113"
if isdate(str)=true then
response.write "不是日期格式"
end if
'转换为日期格式
str=mid(str,1,4)&"-"&mid(str,5,6)&"-"&mid(str,7,8)
热心网友 时间:2024-10-27 02:02
其它你可以通过日期函数来格式化成时间类型就可以了。
你搜索一下:FormatDateTime相关说明就知道怎么用了。