From http://www.w3schools.com (Copyright Refsnes Data)
Complete VBScript Reference
The WeekdayName function returns the weekday name of a specified day of the week.
| WeekdayName(weekday[,abbreviate[,firstdayofweek]]) |
| Parameter | Description |
|---|---|
| weekday | Required. The number of the weekday |
| abbreviate | Optional. A Boolean value that indicates if the weekday name is to be abbreviated |
| firstdayofweek | Optional. Specifies the first day of the week. Can take the following values:
|
|
document.write(WeekdayName(3)) Output: Tuesday |
|
document.write(Date & "<br />") document.write(Weekday(Date) & "<br />") document.write(WeekdayName(Weekday(Date))) Output: 1/15/2002 3 Tuesday |
|
document.write(Date & "<br />") document.write(Weekday(Date) & "<br />") document.write(WeekdayName(Weekday(Date),True)) Output: 1/15/2002 3 Tue |
Complete VBScript Reference
From http://www.w3schools.com (Copyright Refsnes Data)