I was experimenting with ASP.NET file upload and I have a problem uploadingsome of the files. So far I've determined I couldn't upload file that is 10 megsin size. The error I get is plain old error 404 Page does not exist !?!?! Anyonehave any idea if there is a size limit or something else in play here? Foranything else code works OK.
<configuration><system.web><httpRuntime maxRequestLength=""/>
Probably you get a Response timeout...
Guess this was the issue. It does work now.
Play also with executionTimeout.