VBScript Display the months
VBScript
Download (.zip)
<html> <body>
<script type="text/vbscript"> document.write("<p>") document.write(MonthName(1)) document.write("<br>") document.write(MonthName(2)) document.write("<p>")
document.write("Here is how you get the abbreviated name of a month:") document.write("<br>") document.write(MonthName(1,true)) document.write("<br>") document.write(MonthName(2,true)) document.write("<p>")
document.write("Here is how you get the current month:") document.write("<br>") document.write(MonthName(month(date))) document.write("<br>") document.write(MonthName(month(date), true)) </script>
</body> </html>
|