I wanna send JSON response to browser that requested based on REST service. I use something like this that includes some quotes in Controller Method:
return Json("blah\"blah", JsonRequestBehavior.AllowGet);
And I expect the result would be blah"blah
But is blah\"blah
and includes back slash too! I wanna have blah"blah
in response without any conversion in client side. I know that need to perform this via C# codes but how to do that?