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>
link|improve this question

SOLVED You'll need to adjust the maxRequestLength also. Under system.web <httpRuntime executionTimeout="240" maxRequestLength="52428800" /> \T – Thomas Hansen Sep 20 '11 at 7:55
post it as answer and mark it as accepted, it will help you improve the accept rate – 3nigma Sep 20 '11 at 9:09
Would love to, but i can't before there is gone yet another 6-7 hours – Thomas Hansen Sep 20 '11 at 9:11
after 6-7 hrs you can mark it as accepted :) – 3nigma Sep 20 '11 at 9:12
feedback

1 Answer

up vote 0 down vote accepted

SOLVED

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.