Funzione VBScript IsDate

È una funzione che restituisce un valore booleano indipendentemente dal fatto che l'input fornito sia o meno una data.

Sintassi

IsDate(expression)

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write("Line 1 : " & IsDate("Nov 03, 1950") & "<br />")
         document.write("Line 2 : " & IsDate(#01/31/20#) & "<br />")
         document.write("Line 3 : " & IsDate(#05/31/20 10:30 PM#) & "<br />")

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

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

Line 1 : True
Line 2 : True
Line 3 : True