Asp.net 檔案上傳大小限制

客戶端有日反應

我的圖檔怎超過4MB就會發生server 500 error

查了一下

原來是ASP.Net 預設Server 與 Client 的資料傳輸量上限為 4MB

解決方法如下

<configuration>
  <system.web>
    <httpRuntime maxRequestLength="40960" executionTimeout="400"/>
  </system.web>
</configuration>

記住:maxRequestLenght是以KB為單位

 

參考來源:How to increase the max upload file size in ASP.NET?

 

 

 

以上內容,若有錯誤

煩請各路高手路過指正

謝謝!

<(_ _)>