Asp.net mvc 3 - form message - ERR_CONNECTION_RESET

I am trying to create a form mail page in asp.net mvc 3 application with 2500 "hidden" input types (because it's like an excel pre-processed download) with aprox 150 characters of each input (aprox 400Kb of data) and I get an error on the whole browser reset, the VS 2010 debugger does not throw an exception, I don’t know what I can do !!!!

Ahh If I try the same, but with 200 inputs hidden, the page works fine!

Any idea ???? I'm running out of patience!

+3
source share
1 answer

Try increasing the maxRequestLength attribute in the web.config file

<configuration>
 <system.web>
   <httpRuntime
    maxRequestLength="1048576"
    executionTimeout="3600" />
 </system.web>
</configuration>
+2
source

All Articles