您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關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中有哪些時間函數,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。