Funzione MonthName di VBScript
La funzione MonthName restituisce il nome del mese per la data specificata.
Sintassi
MonthName(month[,toabbreviate])
Descrizione dei parametri
Month, un parametro obbligatorio. Specifica il numero del mese.
toabbreviate, un parametro facoltativo. Un valore booleano Valore booleano che indica se il nome del mese deve essere abbreviato. Se lasciato vuoto, il valore predefinito verrà considerato False.
Esempio
<!DOCTYPE html>
<html>
<body>
<script language = "vbscript" type = "text/vbscript">
document.write("Line 1 : " & MonthName(01,True) & "<br />")
document.write("Line 2 : " & MonthName(01,false) & "<br />")
document.write("Line 3 : " & MonthName(07,True) & "<br />")
document.write("Line 4 : " & MonthName(07,false) & "<br />")
</script>
</body>
</html>
Quando lo salvi come .html e lo esegui in Internet Explorer, lo script sopra produrrà il seguente risultato:
Line 1 : Jan
Line 2 : January
Line 3 : Jul
Line 4 : July