<!DOCTYPE html>
<html>
<body>

<p>VBScripts' function <b>MonthName</b> is used to get a month:</p>
<%
response.write("<p>")
response.write(MonthName(1))
response.write("<br>")
response.write(MonthName(2))
response.write("</p><p>")

response.write("Here is how you get the abbreviated name of a month:")
response.write("<br>")
response.write(MonthName(1,True))
response.write("<br>")
response.write(MonthName(2,True))
response.write("</p><p>")

response.write("Here is how you get the current month:")
response.write("<br>")
response.write(MonthName(Month(Date)))
response.write("<br>")
response.write(MonthName(Month(Date),True))
response.write("</p>")
%>


</body>
</html>