Funzione VBScript FormatDateTime

È una funzione che aiuta gli sviluppatori a formattare e restituire un'espressione di data e ora valida.

Sintassi

FormatDateTime(date,format)

Descrizione dei parametri

  • date, un parametro obbligatorio.

  • format, un parametro facoltativo. Il valore che specifica il formato della data o dell'ora da utilizzare. Può assumere i seguenti valori:

    • 0 = vbGeneralDate - predefinito.

    • 1 = vbLongDate - Restituisce la data.

    • 2 = vbShortDate - Restituisce la data.

    • 3 = vbLongTime - Restituisce l'ora.

    • 4 = vbShortTime - Restituisce l'ora.

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         d = ("2013-08-15 20:25")
         document.write("Line 1 : " & FormatDateTime(d) & " <br />")
         document.write("Line 2 : " & FormatDateTime(d,1) & "<br />")
         document.write("Line 3 : " & FormatDateTime(d,2) & "<br />")
         document.write("Line 4 : " & FormatDateTime(d,3) & "<br />")
         document.write("Line 5 : " & FormatDateTime(d,4) & "<br />")
       
      </script>
   </body>
</html>

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

Line 1 : 15/08/2013 8:25:00 PM 
Line 2 : Thursday, 15 August 2013
Line 3 : 15/08/2013
Line 4 : 8:25:00 PM
Line 5 : 20:25