ASP.NET MVC在Controller中,把JsonResult转为JSON字符串 发表评论 ASP.NET MVC在Controller中,把JsonResult转为JSON字符串 string json = new System.Web.Script.Serialization.JavaScriptSerializer().Serialize(jsonResult.Data); Response.Write(json);C#Copy