Funzione VBScript WeekDayName

La funzione WeekDayName restituisce il nome del giorno della settimana per il giorno specificato.

Sintassi

WeekdayName(weekday[,abbreviate[,firstdayofweek]])

Descrizione dei parametri

  • weekday, un parametro obbligatorio. Il numero del giorno della settimana.

  • 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.

  • firstdayofweek, un parametro facoltativo. Specifica il primo giorno della settimana.

    • 0 = vbUseSystemDayOfWeek - Utilizza l'impostazione API National Language Support (NLS)

    • 1 = vb domenica - domenica

    • 2 = vbMonday - Monday

    • 3 = vb Martedì - Martedì

    • 4 = vb Mercoledì - Mercoledì

    • 5 = vb giovedì - giovedì

    • 6 = vbFriday - Friday

    • 7 = vbSaturday - Saturday

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write("Line 1 : " &WeekdayName(3) & "<br />")
         document.write("Line 2 : " &WeekdayName(2,True)& "<br />")
         document.write("Line 3 : " &WeekdayName(1,False)& "<br />")
         document.write("Line 4 : " &WeekdayName(2,True,0)& "<br />")
         document.write("Line 5 : " &WeekdayName(1,False,1)& "<br />")

      </script>
   </body>
</html>

Quando lo salvi come .html e lo esegui in Internet Explorer, lo script sopra produrrà il seguente risultato:

Line 1 : Tuesday
Line 2 : Mon
Line 3 : Sunday
Line 4 : Tue
Line 5 : Sunday