VB.NET中有哪些时间函数
本篇文章给大家分享的是有关VB.NET中有哪些时间函数,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:主机域名、虚拟空间、营销软件、网站建设、大化网站维护、网站推广。
VB.NET时间函数之函数Dateadd()
功能:计算某个指定的时间和
格式: dateadd(timeinterval,number,date)
参数:timeinterval是时间单位(月,日..); number是时间间隔值,date是时间始点.
例子:
< %
currentDate = #8/4/99#
newDate = DateAdd
(“m”,3,currentDate)response.write newDate
%>
< %currentDate =
#12:34:45 PM#newDate = DateAdd
(“h”,3,currentDate)response.write newDate
%>
结果:
11/4/99
3:34:45 PM
其中
“m” = ”month”;
“d” = ”day”;
如果是currentDate 格式,则,
“h” = ”hour”;
“s” = ”second”;
VB.NET时间函数之函数Datediff()
功能:计算某量个指定的时间差
格式: datediff(timeinterval,date1,date2[,firstdayofweek[,firstdayofyear]])
参数: timeinterval 是时间单位; date1,date2是有效的日期表达式,firstdayofweek,firstdayofyear 是任意选项.
例子:
< %fromDate = #8/4/99#
toDate = #1/1/2000#
response.write ”There
are ” & _DateDiff(“d”,fromDate,
toDate) & _“ days to millenium
from 8/4/99.”%>
结果:There are 150 days to millenium from 8/4/99.
以上就是VB.NET中有哪些时间函数,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注创新互联行业资讯频道。
标题名称:VB.NET中有哪些时间函数
网站网址:http://pwwzsj.com/article/ijsphs.html