明霞山资源网 Design By www.htccd.com
实例如下:
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; }
}
//...
}
}<%@ 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;
}
</script>
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#时间戳互转方法(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
标签:
时间戳相互转换
明霞山资源网 Design By www.htccd.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
明霞山资源网 Design By www.htccd.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。