本篇文章给大家分享的是有关VB.NET中有哪些时间函数,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。VB.NET时间函数之函数Dateadd() 功能:计算某个指定的时间和
本篇文章给大家分享的是有关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中有哪些时间函数,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注编程网精选频道。
--结束END--
本文标题: VB.NET中有哪些时间函数
本文链接: https://lsjlt.com/news/291517.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0