Función VBScript Now

La función ahora devuelve la fecha y hora actual del sistema.

Sintaxis

Now()

Ejemplo

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         a = Now()
         document.write("The Value of a : " & a)
       
      </script>
   </body>
</html>

Cuando lo guarda como .html y lo ejecuta en Internet Explorer, la secuencia de comandos anterior producirá el siguiente resultado:

The Value of a : 19/07/2013 3:04:09 PM