asked on
ASKER
<%
ctime = FormatDateTime(Time,vbShortTime)
cday = WeekDayName(WeekDay(Date))
cweek = DatePart("ww", Now)
%>
<% if cweek mod 2 = 0 then %>
This will display the week 2 menus
<% else %>
This will display the week 1 menus
<% end if %>
ASKER
Active Server Pages (ASP) is Microsoft’s first server-side engine for dynamic web pages. ASP’s support of the Component Object Model (COM) enables it to access and use compiled libraries such as DLLs. It has been superseded by ASP.NET, but will be supported by Internet Information Services (IIS) through at least 2022.
TRUSTED BY
ASKER
"Display the code" means that I've got that part done, I just didn't want to write it all out.
Basically I've got two versions of the same code, but want one to display on even numbered weeks and the ohter on odd.