Funzione CDate di VBScript

La funzione converte un'espressione di data e ora valida nel tipo di data.

Sintassi

cdate(date)

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         a = cdate("Jan 01 2020")
         document.write("The Value of a : " & a)
         document.write("<br />")
         b = cdate("31 Dec 2050")
         document.write("The Value of b : " & b)

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

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

The Value of a : 1/01/2012
The Value of b : 31/12/2050