asp.net mvc 3 - 表单发布 - ERR_CONNECTION_RESET

发布于 2024-11-05 10:27:01 字数 230 浏览 0 评论 0原文

我正在尝试在 asp.net mvc 3 应用程序上创建一个表单发布页面,其中包含 2500 个输入类型“隐藏”(因为就像预处理的 Excel 上传),每个输入大约 150 个字符(大约 400Kb 数据),并且在所有浏览器上我我收到连接重置错误,VS 2010 调试器没有触发异常,我不知道我能做什么!!!

啊,如果我尝试同样的操作,但隐藏了 200 个输入,则页面效果很好!

有什么想法吗????我快没耐心了!

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!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人海汹涌 2024-11-12 10:27:01

尝试增加 web.config 中的 maxRequestLength 属性

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

Try increasing the maxRequestLength attribute in your web.config

<configuration>
 <system.web>
   <httpRuntime
    maxRequestLength="1048576"
    executionTimeout="3600" />
 </system.web>
</configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文