請求篩選模塊被配置爲拒絕包含的查詢字符過長的請求,解決方案!

今天遇到WebUploader上傳控件,提交fromData參數過長報錯,並附解決方案!web

但願能幫助到你們!  -   ADOUapp

 

方案1:
在web.config中system.web下配置
1 <httpRuntime targetFramework="4.5" maxRequestLength="999999999" maxQueryStringLength="2097151" />

system.webServer下配置spa

1     <security>
2       <requestFiltering>
3         <requestLimits maxAllowedContentLength="30000000" maxQueryString="2097151"/>
4       </requestFiltering>
5     </security>

兩項同時配置.net

 

方案2:對 IIS 中的 applicationHost.config 配置文件進行配置。
具體配置參考:
相關文章
相關標籤/搜索