[.NET] 解決 System.Web.HttpException 超出最大的要求長度
maxRequestLength 在 Machine.config 檔案所定義的預設上限值 4096 (4 MB) 當資料量大時會出現 超出最大的要求長度 解決方法: 在web.config 更改預設值 <System.Web> <httpRuntime maxRequestLength="10240" /> </System.Web>
compiler note