ASP.NET 的 JSON 最大长度问题
我正在创建一个 asp.net 2.0 webservice,它提供 json 作为输出,并且有一个非常大的、无法分解的数据集,它超出了
我在互联网上搜索的最大长度限制,并且在 .net 3.5 & 上有解决方案。 4,但不是 2.0。
谁能告诉我如何增加 JSON 长度限制?
I am creating a asp.net 2.0 webservice which give json as output and there's a very large, can't be break down, dataset which exceed the max length limit
I have search on the internet, and there's solution on .net 3.5 & 4, but not 2.0.
Can any tell me how can I increase the JSON legth limit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也遇到了同样的问题。看到 3.5 和 4.0 解决方案感到沮丧。结果你做了同样的事情,你只需在 Web.config 中的
标记中添加几行即可。当您粘贴它时,它应该是根下的第一个元素。然后添加到实际的
部分:I had this same exact problem. Was getting frustrated seeing 3.5 and 4.0 solutions. Turns out you do the same thing, you just have to add a couple lines to the
<ConfigSections>
tag in your Web.config. It should be the first element under the root when you paste it in.and then add in the actual
<system.web.extensions>
section: