JSONResult to String
Solution 1:
You're looking for the JavaScriptSerializer
class, which is used internally by JsonResult:
string json = new JavaScriptSerializer().Serialize(jsonResult.Data);
Solution 2:
You can also use Json.NET.
return JsonConvert.SerializeObject(jsonResult.Data);