VBScript Weekday Function
❮ Complete VBScript Reference
The Weekday function returns a number between 1 and 7, that represents the day of the week.
Syntax
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:
|
Example
Example
<%
response.write(Weekday("2010-02-16",0) & "<br />")
response.write(Weekday("2010-02-16",1) & "<br />")
response.write(Weekday("2010-02-16",2) & "<br />")
response.write(Weekday("2010-02-16",3) & "<br />")
response.write(Weekday("2010-02-16",4) & "<br />")
response.write(Weekday("2010-02-16",5) & "<br />")
response.write(Weekday("2010-02-16",6) & "<br />")
%>
The output of the code above will be:
3
3
2
1
7
6
5
Show Example »
❮ Complete VBScript Reference