Main Page:
<iframe src="/files/new" onload="alert('onload');"></iframe>
and inside the iframe, /files/new renders:
<form action="/files/create" method="post" enctype="multipart/form-data" >
<input type="file" name="file1" size="28" />
<input type="submit" value="submit" value="Submit" />
</form>
If I submit a file, iframe's onload event fires as expected. But if I submit a big file larger than the value specified in the maxRequestLength of httpRuntime in web.config, iframe's onload event doesn't fire(Only in firefox(I tested with v3.0.11). IE and Google Chrome fires onload event normally).
I'm using jQuery's ajaxSubmit to upload files and ajaxSubmit internally uses iframe and listen to onload event to notify success or failure. So If I upload a big file any callback is called in firefox and I have no way to know whether it is succeeded or failed.