1. 程式人生 > >C# WebApi Post上傳檔案大小限制

C# WebApi Post上傳檔案大小限制

需要修改兩個地方  

一般都在  web.config裡

<configuration>
  <system.web>
    <httpRuntime maxRequestLength="102400" executionTimeout="200" enable="true" />
  </system.web>
  <system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="104857600" />
      </requestFiltering>
    </security>
  </system.webServer>
</configuration>

需要修改這兩個檔案 

第一個檔案的單位是 kb  也就是100M

第二個檔案的單位是 byte  也是100M