I have a asp.net web form app, i'm trying to upload a large file (13 mb) in a web form with a FileUpload control, when i press the submit button the web browser starts to upload the file. But, when the web browser finish the upload the app crash without reason, and doesn't lauch any exception, and not enter to the click event code (c#) of the submit button. In my web.config i have set the maxAllowedContentLength option and the maxRequestLength option.
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" />
</requestFiltering>
</security>
<httpRuntime targetFramework="4.5" executionTimeout="900" maxRequestLength="2097151" />
This is only happening in the web server(Windows Server 2012), in my local server this is not happening. In the webserver show a default error (I don't manage the server, so i can't see what custom error is happening)
i don't know why this is happening, because in the web server are apps with file upload options even more bigger.
Thanks for your help.