I am using Asp.Net MVC 5 and the standard jquery plugin. I am able to upload files uptil 24MB in size to an MVC action controller. Files larger than 30MB dont get uploaded at all. The breakpoint on the MVC FileUpload actionmethod is never hit. Are there some configurations that need to be set? I searched around for some documentation but couldn't find any.
This is the setting in my web.config
<system.web>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime targetFramework="4.5" maxRequestLength="2147483647" executionTimeout="1600" requestLengthDiskThreshold="2147483647" />
</system.web>
I added this which has now allowed me to upload uptil 110MB in combined files.
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" />
</requestFiltering>
</security>
</system.webServer>
Still no luck with 1GB plus files. In the developer tools I get a 500 - out of memory error in the Network section when I look at the file post. How do I tweak the memory in IIS express or is this a local desktop issue?