ASP函数大全解析(8)


timeinterval is the time interval to add;
number is amount of time intervals to add;
and date is the starting date.
实例: 

<%
currentDate = #9/9/00#
newDate = DateAdd("m",3,currentDate)
response.write newDate
%>
<%
currentDate = #12:34:45 PM#
newDate = DateAdd("h",3,currentDate)
response.write newDate
%>

返回结果: 

9/9/00

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/2077.html