MyClass theSession = new MyClass() {
accountId = 12345,
timeStamp = DateTime.Now,
userType = "theUserType"
};
System.Web.Script.Serialization.JavaScriptSerializer Json = new System.Web.Script.Serialization.JavaScriptSerializer();
Response.Write(Json.Serialize(theSession));
가 생산 :강요 JSON 시리얼 (YYYY-MM-ISO 형식 : mm : ss.msmsmsZ)
"timestamp":"2010-02-15T23:53:35.963Z"
:
{"accountId":12345,"timeStamp":"\/Date(1268420981135)\/","userType":"theUserType"}
어떻게으로 날짜를 표시 할 수
?
당신은 항상 당신의 JS는 당신을 위해 그것을 해석 할 수를 : 내 옆에 & 게시 대답이 질문에서보세요 –