我正在尝试在一台服务器上用JavaScript创建一个UTC日期,并通过URL查询字符串将其传递给另一台服务器,其中C#可以接受该查询字符串,将其识别为日期并将其与新的C#UTC日期进行比较 – 并且它正在证明我觉得比较棘手(除非我只有其中一天).我没有在*上看到任何其他问题(在键入问题时显示的“类似标题”或“类似问题”列表中).
要在JavaScript中创建数据,我使用以下内容,基于this w3schools article:
var currentDate = new Date();
var day = currentDate.getUTCDate();
var month = currentDate.getUTCMonth();
var year = currentDate.getUTCFullYear();
var hours = currentDate.getUTCHours();
var minutes = currentDate.getUTCMinutes();
var seconds = currentDate.getUTCSeconds();
var milliseconds = currentDate.getUTCMilliseconds();
var expiry = Date.UTC(month,day,year,hours,minutes,seconds,milliseconds);
结果看起来像这个1311871476074
所以,在C#中如何从查询字符串中获取此值
>将其转换为适当的日期,并且
>将它与基于C#的UTC DateTime变量进行比较?
我的逻辑/代码中的任何提示,更正或文章链接都将非常感激.
凯文
UPDATE
下面的答案都帮助我解决了我的问题:Luke帮助了C#方面的事情,Ray帮助了JavaScript – 不幸的是我无法将它们都标记为答案,但我希望我能做到!
解决方法:
JavaScript UTC
method返回自1970年1月1日00:00:00 UTC以来的毫秒数.要将这些毫秒转换回C#中的DateTime,您只需将它们添加到原始“epoch”:
string rawMilliseconds = Request.QueryString["expiry"];
if (string.IsNullOrWhiteSpace(rawMilliseconds))
throw new InvalidOperationException("Expiry is null or empty!");
long milliseconds;
if (!long.TryParse(rawMilliseconds, out milliseconds))
throw new InvalidOperationException("Unable to parse expiry!");
DateTime epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
DateTime expiry = epoch.AddMilliseconds(milliseconds);