sadism
create a php file called something like: servertime.php
with contents:
<?php
header('Access-Control-Allow-Origin: *');
$dt = new DateTime();
echo $dt->format('Y-m-d H:i:s');
?>
then use an ajax call from within C2 that calls that php file. In the On Complete event, the date and time will be in the AJAX.LastData field.