今天遇到WebUploader上傳控件,提交fromData參數過長報錯,並附解決方案!web
但願能幫助到你們! - ADOUapp
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