Wednesday 30 November 2011

INTERVAL VALUES FOR DATES / TIMES

When you work with dates and times, it is vital to know the correct value that represents the date or time period you are wanting. Here is a list of available date / time values:
Value
Meaning
"yyyy"
Year
"q"
Quarter
"m"
Month
"y"
Day of Year
"d"
Day
"w"
Weekday
"ww"
Week of Year
"h"
Hour
"n"
Minute
"s"
Seconds

Here is an example of how this may be used:

<% Response.Write DateAdd ("d", 1, Date) %>

This displays tomorrows date like this: 01/12/2011

http://www.aspwebpro.com/tutorials/asp/intervalvaluesfordates.asp

No comments:

Post a Comment