Date
The Date function returns the current date determined by
the local system clock where the script is run. In ASP, this means
the web server where the page is executed.
You should note that this function does NOT return the time
also. If you wish to retrieve both the current date and time, you
should use the Now function instead.
Response.Write "Today's Date is: " & Date()
|
 |

|