此请求的查询字符串的长度超过配置的 maxQueryStringLength 值。
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" maxQueryStringLength="102400" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxQueryString="102400" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
然后将web.config文件更新至服务器上与ajax同级目录下