Does anymore know how to get an automatic date (something like Date() or Now() ) that will have the date format:
'
mm/dd/yyyy???
thanks.
Printable View
Does anymore know how to get an automatic date (something like Date() or Now() ) that will have the date format:
'
mm/dd/yyyy???
thanks.
The best thing is to do is create your own date formatting function. EG separate the day month and year from the date and them out put itQuote:
Originally posted by warker
Does anymore know how to get an automatic date (something like Date() or Now() ) that will have the date format:
'
mm/dd/yyyy???
thanks.
eg
dim d, m, y
d=day(date)
m=moth(date)
y=year(date)
response.write m & "/" & d & "/" & y
or you can use the FormatDateTime function
hope this helps.
You can use
FormatdateTime( now(), vbshortdate)
But be sure to configure your server's date and time setting.
You should be able to set it up under regional setting