public ActionResult GetLargeJsonResult()
{
  return new ContentResult
    {
        Content = new JavaScriptSerializer { MaxJsonLength = Int32.MaxValue }.Serialize(myBigdata),
        ContentType = "application/json"
    };
}

 

相关文章:

  • 2021-12-23
  • 2021-12-23
  • 2022-02-12
  • 2021-08-22
  • 2021-10-13
  • 2022-02-09
  • 2022-12-23
  • 2021-12-28
猜你喜欢
  • 2021-08-24
  • 2022-02-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-13
  • 2021-11-18
相关资源
相似解决方案