How does one return unescaped Json, using Json.Net in an MVC project?
So far, I serialize a basic object, and get Json.Net to serialize it:
public Js
You are Jsoning it twice, the Json method is json serializing your already converted string. If you want to use JsonConvert then write that directly to the response stream.
Json