如题
报错提示:
使用 JSON JavaScriptSerializer 进行序列化或反序列化时出错。字符串的长度超过了为 maxJsonLength 属性设置的值。","StackTrace
解决方案 在web.config 中configuration节点 插入
<system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="1024000" /> </webServices> </scripting> </system.web.extensions>
原文地址:https://www.cnblogs.com/flysem/p/9313195.html
时间: 2024-10-11 05:11:43