js时间戳和c#时间戳互转方法(推荐)

前端之家收集整理的这篇文章主要介绍了js时间戳和c#时间戳互转方法(推荐)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

实例如下:@H_404_2@

namespace TestWeb
{
public partial class ajax : System.Web.UI.Page
{
protected void Page_Load(object sender,EventArgs e)
{
if (!IsPostBack)
{
//TestAjax()
}
}

  1. public void TestAjax()
  2. {
  3. var phone = Request.Form["phone"];
  4. var authcode = Request.Form["authcode"];
  5. var pt = Request.Form["pt"]; //js时间戳 new Date().getTime() eg: 1429503106452
  6. string outputmsg = string.Empty;
  7. if (phone != null && authcode != null && pt != null)
  8. {
  9. DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970,1,1));
  10. //说明下,时间格式为13位后面补加4个"0",如果时间格式为10位则后面补加7个"0"
  11. long lTime = long.Parse(pt + (pt.Length == 13 ? "0000" : "0000000"));
  12. TimeSpan toNow = new TimeSpan(lTime);
  13. DateTime dtResult = dtStart.Add(toNow); //得到转换后的时间
  14. string str = dtResult.ToString();
  15. outputmsg = OutMsg(new ResponseInfo { success = true,tag = 100,msg = "成功" });
  16. }
  17. Response.Write(outputmsg);
  18. }
  19. public long GetCurrentTicksForJs()
  20. {
  21. System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970,0));
  22. DateTime dtResult = DateTime.Now;//<a href="/tag/huoqu/" target="_blank" class="keywords">获取</a>时间
  23. long t = (dtResult.Ticks - startTime.Ticks) / 10000;//除10000调整为13位
  24. return t;
  25. }
  26. public string OutMsg(object obj)
  27. {
  28. return JsonConvert.SerializeObject(obj,Newtonsoft.Json.Formatting.Indented);
  29. }
  30. public class ResponseInfo
  31. {
  32. public bool success { get; set; }
  33. public int tag { get; set; }
  34. public string msg { get; set; }
  35. }
  36. //...

}
}<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ajax.aspx.cs" Inherits="TestWeb.ajax" %>

<script type="text/javascript">
var d = new Date(<%=GetCurrentTicksForJs() %>);
alert(formatDate(d));

function formatDate(now) {
var year = now.getFullYear();
var month = now.getMonth() + 1;
var date = now.getDate();
var hour = now.getHours();
var minute = now.getMinutes();
var second = now.getSeconds();
return year

  • "-"
  • (month.toString().length ==1 ? "0"+month : month)
  • "-"
  • (date.toString().length ==1 ? "0"+date : date) + " " + hour + ":" + minute + ":" + second;
    } var date = new Date(1459481266695); Y = date.getFullYear() + '-'; M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; D = date.getDate() + ' '; h = date.getHours() + ':'; m = date.getMinutes() + ':'; s = date.getSeconds(); console.log(Y+M+D+h+m+s); VM307:9 2016-04-1 11:27:46

以上这篇js时间戳和c#时间戳互转方法(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

猜你在找的C#相关文章