c# php 时间戳,详细介绍c#时间戳和js时间戳互转方法的代码分享

下面小编就为大家带来一篇js时间戳和c#时间戳互转方法(推荐)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

实例如下:using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

using Newtonsoft.Json;

namespace TestWeb

{

public partial class ajax : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

if (!IsPostBack)

{

//TestAjax()

}

}

public void TestAjax()

{

var phone = Request.Form["phone"];

var authcode = Request.Form["authcode"];

var pt = Request.Form["pt"]; //js时间戳 new Date().getTime() eg: 1429503106452

string outputmsg = string.Empty;

if (phone != null && authcode != null && pt != null)

{

DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1));

//说明下,时间格式为13位后面补加4个"0",如果时间格式为10位则后面补加7个"0"

long lTime = long.Parse(pt + (pt.Length == 13 ? "0000" : "0000000"));

TimeSpan toNow = new TimeSpan(lTime);

DateTime dtResult = dtStart.Add(toNow); //得到转换后的时间

string str = dtResult.ToString();

outputmsg = OutMsg(new ResponseInfo { success = true, tag = 100, msg = "成功" });

}

Response.Write(outputmsg);

}

public long GetCurrentTicksForJs()

{

System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0));

DateTime dtResult = DateTime.Now;//获取时间

long t = (dtResult.Ticks - startTime.Ticks) / 10000;//除10000调整为13位

return t;

}

public string OutMsg(object obj)

{

return JsonConvert.SerializeObject(obj, Newtonsoft.Json.Formatting.Indented);

}

public class ResponseInfo

{

public bool success { get; set; }

public int tag { get; set; }

public string msg { get; set; }

}

//...

}

}

var d = new Date();

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值