3

I'm trying to make a form post page on asp.net mvc 3 application with 2500 input type "hidden" (because is like an preprocessed excel upload) with aprox 150 chars each input (aprox 400Kb of data) and on all browser i'm getting a connection reset error, the VS 2010 debugger is not firing an exception, I don't know what can I do!!!!

Ahh If I try the same thing but with 200 inputs hidden the page works well!

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

Santiago
  • 2,190
  • 10
  • 30
  • 59

1 Answers1

2

Try increasing the maxRequestLength attribute in your web.config

<configuration>
 <system.web>
   <httpRuntime
    maxRequestLength="1048576"
    executionTimeout="3600" />
 </system.web>
</configuration>
Samuel Jack
  • 32,712
  • 16
  • 118
  • 155
Xorsat
  • 2,388
  • 21
  • 21