VBScript Display the current month and day
VBScript
Download (.zip)
<html> <body>
<script type="text/vbscript"> document.write("Today's day is " & WeekdayName(weekday(date))) document.write("<BR>The month is " & MonthName(month(date))) </script>
</body> </html>
|