Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here's how part of my JSON should look like:

"CreateDate":"\/Date(1062522780000-0500)\/"

This is my C# where I'm trying to create it:

"\"CreateDate\": \"" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\"," +

Any help would be greatly appreciated?

share|improve this question
1  
It seems like you did it... What do you need help with? – Daniel Mošmondor May 31 '12 at 17:23
Why do you need your json to look like that? That's the way asp.net services render DateTime fields, but unless you have a good reason to use that format you could use any other. – Claudio Redi May 31 '12 at 17:26

2 Answers

To work with json use a Json parser like DataContractJsonSerializer, Json.Net, JavaScriptSerializer

string json=new JavaScriptSerializer().Serialize(new {CreateDate=DateTime.Now });
share|improve this answer

If you use the JavaScriptSerializer or DataContractJsonSerializer for serializing the object to json, the date will look like that.

If you are using MVC, you can just do

return JSon( yourObj );

from the action method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.