Uploadify for ASP.NET app返回大型文件的HTTP错误

时间:2013-04-24 09:37:15

标签: asp.net uploadify

我的Uploadify脚本适用于大多数小于10 MB的文件。但是一旦文件大小开始超过40 MB,它将无法上传,只有“HTTP错误”的错误消息。我尝试为Uploadify实现onError处理程序,但它没有给我任何详细信息确切的错误。变量返回“未定义”。我检查了我的web.config文件,文件大小限制设置为50 MB,我有30分钟的超时,所以我不知道问题是什么。这是我的剧本:

$('#uploader').uploadify({
  'uploader': '/js/uploadify/uploadify.swf',
  'script': '/cms/common/uploadify/UploadHandler.ashx',
  'cancelImg': '/images/cancel_upload.png',
  'buttonImg': '/images/select_video_thumbnail_en-us.gif',
  'auto': true,
  'folder': '/Temp',
  'multi': false,
  'sizeLimit': 0,
  'displayData': 'percentage',
  'simUploadLimit': 1,
  'fileExt': '*.jpg;*.gif;*.png',
  'fileDesc': '*.jpg;*.gif;*.png',
  'buttonText': 'Select thumbnail...',
  'width': '120',
  'height': '24',
  'onComplete': function (e, queueId, fileObj, response, data)
  {
    return true;
  },
  'onError': function (a, b, c, d)
  {
    if (d.status == 404)
      alert('Could not find upload script.');
    else if (d.type === "HTTP")
      alert('error ' + d.type + ": " + d.status);
    else if (d.type === "File Size")
      alert(c.name + ' ' + d.type + ' Limit: ' + Math.round(d.sizeLimit / 1024) + 'KB');
    else
      alert('error ' + d.type + ": " + d.text);
  },
  'onCancel': function (e, queueId, fileObj, data)
  {

  }
});

2 个答案:

答案 0 :(得分:3)

我正在运行的IIS7的默认内部文件大小限制为30 MB。将maxRequestLength设置为大于此值将无济于事。通过将以下内容添加到web.config文件来解决此问题:

<system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="50000000"/>
            </requestFiltering>
        </security>
</system.webServer>

这也可以在IIS7中设置。有关更多详细信息,请参阅以下链接: IIS7 File Upload Size Limits Enabling Request Filtering In IIS 7

答案 1 :(得分:0)

在uploadify功能中添加以下标记。

'sizeLimit': '10045728'

它适合你。大小限制是您的文件大小限制。它是KB。