Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%@ Language=VBScript %>
<% Option Explicit %>
<%
dim MonthArray, MonthNmbr, MonthName, countr
MonthArray=Array("january","february","march","april","may","june","july","august","september","october","november","december")
MonthName="november"
for countr = 0 to ubound(MonthArray)
if MonthArray(countr) = MonthName then
MonthNmbr = countr +1
end if
next
%>
<HTML>
<HEAD>
<TITLE>Month Number from Name...</TITLE>
</HEAD>
<BODY >
Month number: <%=MonthNmbr%>
</BODY>
</HTML>