asp date()函数 2010-4-20 想显示2010-04-20怎么做?

dim dtNow
dtNow = date()
dim newDate
newDate = year(dtNow) & "-" & right("0" & month(dtNow),2) & "-" & right("0" & day(dtNow),2)

这个自动将2010-4-20 转化为 2010-04-20

 

http://w.sogou.com/question/99319695.html

你可能感兴趣的:(Date,asp,2010)