.NET Form Post - JPG 文件发送正常,PSD 文件表现奇怪

发布于 2024-12-05 05:42:52 字数 558 浏览 1 评论 0原文

我有一个带有 iframe 的页面。我有一个发布到此 iframe 的表单。该帖子包含两个表单字段(一个文件和一个带有 ID 号的隐藏文本字段)。当我选择 JPG、PNG、GIF 时,一切正常。表单发布到 Iframe 并按其应有的方式进行。

但是当我尝试对 11 mb PSD 文件执行相同操作时,它会出现 DNS 错误 (res://ieframe.dll/dnserrordiagoff.htm#http://localhost:50661/Upload/UploadSingleFile")。当我尝试时要通过 firebug 运行它,我看到帖子正在制作,但在我发布后 2 秒内切换到“中止”,

我已将其包含在 system.webs 下的 web.config 中,以支持。 50mb 内容长度(文件大小)

<security>
  <requestFiltering>
    <requestLimits maxAllowedContentLength="52428800"/>
  </requestFiltering>
</security>

I have a page with an iframe on. I have a form who post to this iframe. The post contains two form fields(one file and one hidden textfield with an ID number). Everything works fine when i choose a JPG, PNG, GIF. The form post to the Iframe and it does as it should.

But when i try to do the same with a 11 mb PSD file it gives me a DNS error (res://ieframe.dll/dnserrordiagoff.htm#http://localhost:50661/Upload/UploadSingleFile"). When i try to run it through firebug, i see the post being made, but shift to "aborted" within 2 seconds after i post.

I have included this in my web.config under system.webs, to support 50mb content length (file size)

<security>
  <requestFiltering>
    <requestLimits maxAllowedContentLength="52428800"/>
  </requestFiltering>
</security>

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

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

发布评论

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

评论(1

憧憬巴黎街头的黎明 2024-12-12 05:42:52

已解决

您还需要调整 maxRequestLength。在system.web下

SOLVED

You'll need to adjust the maxRequestLength also. Under system.web

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