Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

VBScript Now function


May 13, 2021 VBScript


Table of contents


VBScript Now function

The VBScript Now function is used to get the system date and time of the current computer.


VBScript Now function Complete VBScript reference manual

The Now function returns the current date and time based on the date and time settings of the computer system.

Grammar

Now

Instances (IE only)

<script type="text/vbscript">

document.write("The current system date and time is: ")
document.write(Now)

</script>

The above example output results:

document.write("The current system date and time is: ") document.write(Now)

Try it out . . .


VBScript Now function Complete VBScript reference manual