jQuery倒计时服务器同步经典ASP

时间:2013-10-16 20:50:23

标签: jquery asp-classic

我一直在使用基斯森林倒计时。

我将它与经典的asp拍卖设置一起使用

我的问题是我需要同步的时间我可以看到PHP的代码,但似乎无法让它用于ASP

   $(selector).countdown({
       until: liftoffTime,
       serverSync: serverTime
   });

   function serverTime() {
       var time = null;
       $.ajax({
           url: 'http://myserver.com/serverTime.php',
           async: false,
           dataType: 'text',
           success: function (text) {
               time = new Date(text);
           },
           error: function (http, message, exc) {
               time = new Date();
           }
       });
       return time;
   }

    <? php
    $now = new DateTime();
   echo $now - > format("M j, Y H:i:s O").
   "\n"; ?>

任何帮助转换都会很棒吗?

1 个答案:

答案 0 :(得分:0)

如果您确实谈论的是经典ASP而不是ASP.NET,请尝试以下方法:

<%
    Dim dt
    dt = Now()
    Response.Write MonthName(Month(dt),True) & " " & Day(dt) & ", " & Year(dt) & " " & Right("0" & Hour(dt), 2) & ":" & Right("0" & Minute(dt), 2) & ":" & Right("0" & Second(dt), 2) & vbLf
%>