如何让asp时间字段不显示秒,或者存储access的时候就不显示秒
不是显示本机时间,是显示access里时间字段存储的时间
比如有个字段<%=rs("time")%>
参考答案:那你自己写个函数吧
function ds()
dim T
T=now()
T=cstr(year(T))&"-" & cstr(month(T))&"-" & cstr(day(T))&" "&cstr(hour(T))&":" & cstr(minute(T))
ds=T
end function
没做测试,应该可以,你看看吧