首页 > 编程 > .NET > 正文

解决ASP.NET上传文件大小限制

2024-07-10 12:56:40
字体:
来源:转载
供稿:网友
  
对于asp.net,默认只允许上传2m文件,增加如下配置,一般可以自定义最大文件大小.
<httpruntime 
executiontimeout="300" 
maxrequestlength="40960" 
usefullyqualifiedredirecturl="false"/> 

如果还不行,可以使用思归提供的方案:
我们在上传大文件时都遇到过这样或那样的问题。设置很大的maxrequestlength值并不能完全解决问题,因为asp.net会block直到把整个文件载入内存后,再加以处理。实际上,如果文件很大的话,我们经常会见到internet explorer显示 "the page cannot be displayed - cannot find server or dns error",好像是怎么也catch不了这个错误。为什么?因为这是个client side错误,server side端的application_error是处理不到的,可以参考这个帖子研究一下产生这个错误的机理。
handling server error when upload file too large 
解决的方法是利用隐含的httpworkerrequest,用它的getpreloadedentitybody 和 readentitybody方法从iis为asp.net建立的pipe里分块读取数据
  iserviceprovider provider = (iserviceprovider) httpcontext.current; 
  httpworkerrequest wr = (httpworkerrequest) provider.getservice(typeof(httpworkerrequest));
  byte[] bs = wr.getpreloadedentitybody();
  ....
  if (!wr.isentireentitybodyispreloaded())
  {
        int n = 1024;
        byte[] bs2 = new byte[n];
        while (wr.readentitybody(bs2,n) >0)
       {
             .....
        }
  }
chris hynes为我们提供了这样的一个方案(用httpmodule),该方案除了允许你上传大文件外,还能实时显示上传进度:
asp.net upload magic part 2 
这里有他讲座的ppt文件:
uploading with asp.net (part 1)
uploading with asp.net (part 2)
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表