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));
Производит:
{"accountId":12345,"timeStamp":"\/Date(1268420981135)\/","userType":"theUserType"}
Как мне представить дату как:
"timestamp":"2010-02-15T23:53:35.963Z"