I'm having trouble getting dates in the UK format DD/MM/YYYY running IIS locally.
I have a global.asa file in the root directory of the default web app as:
Sub Session_OnStart
'Set the server locale
Session.LCID = 2057
End Sub
But I still get MM/DD/YYYY.
My date time settings are GMT (UK).
I am retrieving dates from the access database and formatting them using:
FormatDateTime(rsLatestNewsPosts("Date_stamp"),2)
Please please someone tell me what I'm missing as it's really doing my head in now!!!!
Do I need to do anything to run the global.asa in IIS settings?
Thanks
Tim