
Newbie Question: Calender
Weekday Function
http://msdn.microsoft.com/scripting/vbscript/doc/vsfctWeekday.htm
--
Michael Harris
MVP Scripting
Hey all...
I'm pretty new to all this, so I'll try to be as concise as I can.
I am trying to use ASP/VBscript to build a web-based calender utility. I've
got my days of the week in ok:
<table border="1" align="center">
<tr>
<td colspan="7" align="center">
<font face="verdana" size="2">
Calender / Planner Utility
</td>
</tr>
<tr>
<% for i = 1 to 7%>
<td><font face="verdana" size="1"><%=WeekdayName(i)%></td>
<%next%>
but now I need to determine which day of the week was the 1st day of the
currently viewed month. (like july 1st was a sunday) How can I make the
script "aware" of the first day of the month (specifically, which day of the
week it was)
thanking whoever gets this and solves it for me!!
-james