标签:
在asp.net mvc中,实体序列化成JSON对象时,若实体过大,则会报错,需要在web.config中加入以下内容。
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="2147483644"/>
</webServices>
</scripting>
</system.web.extensions>
<appSettings>
<add key="aspnet:MaxJsonDeserializerMembers" value="15000000" />
</appSettings>
标签:
原文地址:http://www.cnblogs.com/CitySnail/p/5123830.html