问题分析:
一般通过Get方式请求,服务器只能接受url长度不超过2048个字节的请求。
问题解决:
我们可以将服务器能够接受的最大请求长度设置为100MB。
在Web.config文件中添加以下配置。
<system.web>
<httpRuntime maxRequestLength="102400" maxQueryStringLength="102400"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="102400" maxQueryString="102400" />
</requestFiltering>
</security>
</system.webServer>