今天再次遇到了標題上的問題。由於以前遇到過該問題,因此開始沒有想太多,直接上網查資料,而後就是一翻拷貝web
方案1: 在程序的web.config 中system.web 節點 裏面插入 <httpRuntime maxRequestLength="999999999" maxQueryStringLength="2097151" /> 代碼。再次運行,失敗app
方案2:對IIS 中的applicationHost.config 配置文件進行配置。再次運行,失敗it
方案3:在程序的web.config 中configuration 節點 裏面插入io
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" maxQueryString="2147483647"/>
</requestFiltering>
</security>
</system.webServer>配置
代碼。再次運行,失敗request
不行!頭有點大。。通過一番嘗試後發現終極解決辦法:程序
就是 方案1 + 方案3 的結合體,再次嘗試,運行經過。im