This may be a possible duplicate, but I am posting this after searching a lot and trying various method.
I am passing model as a JsonResult in ajax success and binding the value to controls. In my model I have a datetime property which gets a proper date value but in my ajax success it gets converted to something like this '/Date(1493749800000)/' .
Now when I want to use the Datetime value for further function in Datetime property of my MVC model, it gets null.
Please do suggest a way I can handle this scenario.
Things I tried: Date.Parse(), Json.Parse(), string.Replace()