Time
The Time function returns the current time according
to the local system settings. When working with ASP pages,
this will be evaluated by the web server on which the script
is run.
This function does not return the date and time together.
For that purpose, ASP has the Now function. This
function will only return the current time and nothing else.
Response.Write "At the tone the time will be: " & Time() & "<BR>" Response.Write "* Beep *"
|
 |

|