LocalDateToSystemDate

Overview 

Pass a local date and time value and return that value in the system time format

Syntax 

LocalDateToSystemDate(1)

Function Properties 

OrdinalTypeDescription
1datetimeRequiredLocal date and time value

Example 

1<script runat="server">
2     var time = Now();
3     var systemTime = Platform.Function.LocalDateToSystemDate(time);
4</script>