http upload file 有无max size limit

http upload file 有无max size limit
 
ASP.NET预设是4MB,如超过要自己去web.config 中设置。
<httpRuntime>
配置 ASP.NET HTTP 运行库设置。该节可以在计算机、站点、应用程序和子目录级别声明。
示例:控制用户上传文件最大为4M,最长时间为60秒,最多请求数为100
 
<httpRuntime maxRequestLength="4096"
 executionTimeout="60"
appRequestQueueLimit="100"/>
 
系统默认预设是 4096,单位为 KB。
 
***
如果超出上述设置,则会显示"Page Cannot be Displayed” 错误信息,当然可以通过各种机制捕获上述异常。

posted on 2008-06-13 17:12  EntLib  阅读(957)  评论(1编辑  收藏  举报