<% Response.Write "
" Response.Write "Date() - Returns the Current System Date
" Response.Write "The Date() function returns the current date from to the system clock.
" Response.Write Date() Response.Write "
" Response.Write "DateAdd() - Change a Date by a Specified Time Interval
" Response.Write "The DateAdd() function allows you to change a date by adding to or reducing it by a specified time interval. For example, calculate the date 9 days ago.
" 'Response.Write DateAdd() Response.Write "
" Response.Write "DateDiff() - Calculate the Difference Between Two Dates
" Response.Write "The DateDiff() function is used to compare two dates and calculate the period between them in days, months, years, hours, minutes or seconds.
" 'Response.Write DateDiff() Response.Write "
" Response.Write "DatePart() - Determine Specified Part of a Given Date
" Response.Write "The DatePart() function is used to determine the specified part of a given date, for example the day of the week or the month of the year.
" 'Response.Write DatePart() Response.Write "
" Response.Write "DateSerial() - Create a Date Variable from Day, Month and Year
" Response.Write "The DateSerial() function creates a date variable from the supplied day, month and/or year parameters.
" 'Response.Write DateSerial() Response.Write "
" Response.Write "DateValue() - Create a Date from a Formatted Date String
" Response.Write "The DateValue() creates a date variable from the supplied formatted date (and/or time) string.
" 'Response.Write DateValue() Response.Write "
" Response.Write "Day() - Determine the Day from a Date
" Response.Write "The Day() function is used to determine the day from a date variable or formatted string.
" Response.Write Day(now()) Response.Write "
" Response.Write "FormatDateTime() - Creates a Formatted Date String
" Response.Write "The FormatDateTime() function creates a formatted date/time string from the supplied date.
" 'Response.Write FormateDateTime() Response.Write "
" Response.Write "Hour() - Determine the Hour from a Date/Time
" Response.Write "The Hour() function is used to determine the hour from a date/time variable or formatted string.
" Response.Write Hour(now()) Response.Write "
" Response.Write "Minute() - Determine the Minutes from a Date/Time
" Response.Write "The Minute() function is used to determine the number of minutes from a date/time variable or formatted string.
" Response.Write Minute(now()) Response.Write "
" Response.Write "Month() - Determine the Month from a Date
" Response.Write "The Month() function is used to determine the month from a date variable or formatted string.
" Response.Write Month(now()) Response.Write "
" Response.Write "MonthName() - Creates a string indicating the specified month
" Response.Write "The MonthName() function returns a string representation of the name for the specified month, e.g. January ... December.
" 'Response.Write MonthName() Response.Write "
" Response.Write "Now() - Returns the current date and time
" Response.Write "The Now() function returns the current date and time according to the setting of the host computer's system date and time.
" Response.Write Now() Response.Write "
" Response.Write "Second() - Determine the Seconds from a Date/Time
" Response.Write "The Second() function is used to determine the number of seconds from a date/time variable or formatted string.
" Response.Write Second(Now()) Response.Write "
" Response.Write "Time() - Returns the current system time
" Response.Write "The Time() function returns the current time according to the settings of the host computer's system time.
" Response.Write Time() Response.Write "
" Response.Write "Timer() - Returns the number of seconds since midnight
" Response.Write "The Timer() function returns the number of seconds that have elapsed since 12:00 AM (midnight).
" 'Response.Write Timer() Response.Write "
" Response.Write "TimeSerial() - Create a time from Hours, Minutes and Seconds
" Response.Write "The TimeSerial() functions creates a date variant for the time specified using hours, minutes and seconds.
" 'Response.Write TimeSerial() Response.Write "
" Response.Write "TimeValue() - Create a time from a formatted time string
" Response.Write "The TimeValue() creates a date variant containing the time from the supplied formatted time string.
" 'Response.Write TimeValue() Response.Write "
" Response.Write "Weekday() - Determine the weekday from a date
" Response.Write "The Weekday() function is used to determine the weekday from a date variable or formatted string.
" Response.Write Weekday(now()) Response.Write "
" Response.Write "WeekdayName() - Creates a string indicating the specified weekday
" Response.Write "The WeekdayName() function returns a string representation of the name for the specified weekday, e.g. Monday ... Sunday.
" Response.Write "Example: WeekdayName(WeekDay(Now()))
" Response.Write WeekdayName(weekday(now())) Response.Write "
" Response.Write "Year() - Determine the year from a date
" Response.Write "The Year() function is used to determine the supplied date variable or formatted string.
" Response.Write Year(now()) Response.Write "
" %>