.NET Form Post - JPG 文件发送正常,PSD 文件表现奇怪
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已解决
您还需要调整 maxRequestLength。在system.web下
SOLVED
You'll need to adjust the maxRequestLength also. Under system.web