I'm trying to make a form post page on asp.net mvc 3 applicatio开发者_C百科n 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!
Try increasing the maxRequestLength attribute in your web.config
<configuration>
<system.web>
<httpRuntime
maxRequestLength="1048576"
executionTimeout="3600" />
</system.web>
</configuration>
精彩评论