I am using a controller to create a JSON string.
StringBuilder builder = new StringBuilder();
...
builder.Append(String.Format(@"{{""lat"":{0}, ""lon"":{1}}},", latitude, longitude));
When it comes to the view, the code above is rendered into something like
"lat":10.7654200827348, "lon":106.681716282384}
so jQuery.parseJSON() does not work because it does not understand "
How can I fix that? Thank you in advance