From http://www.w3schools.com (Copyright Refsnes Data)
Complete VBScript Reference
The Weekday function returns a number between 1 and 7, that represents the day of the week.
| Weekday(date[,firstdayofweek]) |
| Parameter | Description |
|---|---|
| date | Required. The date expression to evaluate |
| firstdayofweek | Optional. Specifies the first day of the week. Can take the following values:
|
|
document.write(Date & "<br />") document.write(Weekday(Date)) Output: 1/15/2002 3 |
Complete VBScript Reference
From http://www.w3schools.com (Copyright Refsnes Data)