P
Peter Judge
Guest
There's no time-zone on the datetime value returned, so the AVM assumes UTC. TO store the date, you can add the timezone if you know it. The snippet below shows this def var c1 as char. c1 = "2016-06-13T05:17:33.000632". session:date-format = 'ymd'. message 'this is automatically converted using the session timezone:' datetime-tz(c1) skip datetime-tz( datetime(c1), +000) view-as alert-box.
Continue reading...
Continue reading...