I am sending date values from C# application via JSON but instead of a standard date, it appears in this format /Date(1324512000000)/
Can anyone please tell me how to send it from C# in the format it expects? Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JSON doesn’t recognize c#’s datetime object. You should send it back as a string by calling .toString on your datetime variable in your controller.