In the web.config, I've set maxRequestLength to 102400. When I upload a 65M file, it redirects me to a 404 error page, but it is normal in asp.net. This is the current setting:

 <httpRuntime requestValidationMode="2.0" maxRequestLength="102400"/>
link|improve this question
feedback

1 Answer

If you try to upload a small file, its work? I think this kind of error isn't related with maxRequestLength. Verify your Upload Action, or write here for us.

link|improve this answer
arnistrong,Thanks for your answer,i upload a small file,it's no problem,if it is bigger than 50M appear an error page. – user980447 Dec 5 '11 at 11:41
This is a asp.net web page,I run it in asp.net web application is OK,I array it in MVC project,then link to this page appear this problem. – user980447 Dec 5 '11 at 11:47
You need to include relevant code in your initial question so we can help you. Like arnistrong said, it's not likely to be a problem with the setting, but in your code; e.g your upload action. – jstnasn Dec 6 '11 at 1:46
feedback

Your Answer

 
or
required, but never shown

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