主题:  关于FORMATDATETIME

沉默是金

职务:普通成员
等级:6
金币:11.2
发贴:4357
#12003/7/3 21:25:24
<%dim i,p
i="2003-5-23"
p=formatdatetime(i,n)
response.wrtie p
%>
formatdatetime后面的N要换成什么数值才能将时间转换成为:2003-5-23 21:21:58
或者有什么办法可以将它转成这种形式?不解!


难人一个……

ryonick

职务:普通成员
等级:2
金币:1.0
发贴:317
#22003/7/3 22:09:22
2003-5-23怎么可能转换成2003-5-23 21:21:58 起码你得提供一个时间吧



沉默是金

职务:普通成员
等级:6
金币:11.2
发贴:4357
#32003/7/4 15:04:30
搞定了,脑袋一下子转不过弯来。
n_year=trim(request.form("n_year"))
n_month=trim(request.form("n_month"))
n_day=trim(request.form("n_day"))
if n_year="" or n_month="" or n_day="" then
    response.write ("")
elseif not isnumeric(n_year) or not isnumeric(n_month) or not isnumeric(n_day) then
    response.write ("")
else
    xxyxsj=formatdatetime((n_year)&"-"&(n_month)&"-"&(n_day),2)    
        if not isdate(xxyxsj) then
            response.write ("")
        end if
    xxyxsj=xxyxsj&time()
end if

编辑历史:[这消息被arhui编辑过(编辑时间2003-07-07 10:41:28)]

难人一个……