开发者

asp.net mvc 3 - form post - ERR_CONNECTION_RESET

开发者 https://www.devze.com 2023-03-03 22:40 出处:网络
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 400K

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>
0

精彩评论

暂无评论...
验证码 换一张
取 消