How to increase the max upload file size in ASP.NET?

This setting goes in your web.config file. It affects the entire application, though… I don’t think you can set it per page.

<configuration>
  <system.web>
    <httpRuntime maxRequestLength="xxx" />
  </system.web>
</configuration>

“xxx” is in KB. The default is 4096 (= 4 MB).

Leave a Comment