2

我正在为 MVC3 C# 使用 Uploadify v3.1。

我的cshtml代码是

<div class="container_24">
    <input type="file" name="file_upload" id="file_upload" />
</div>

我的js代码是

$(document).ready(function () {
    $('#file_upload').uploadify({
        'method': 'post',
        'swf': '../../Scripts/uploadify-v3.1/uploadify.swf',
        'uploader': 'DashBoard/UploadFile'
    });
});

控制器代码是

[HttpPost]
        public ActionResult UploadFile(HttpPostedFileBase file)
        {
            // Verify that the user selected a file
            if (file != null && file.ContentLength > 0)
            {
                // extract only the fielname
                var fileName = Path.GetFileName(file.FileName);
                // store the file inside ~/App_Data/uploads folder
                var path = Path.Combine(Server.MapPath("~/Uploads"), fileName);
                file.SaveAs(path);
            }
            // redirect back to the index action to show the form once again
            return RedirectToAction("Index", "Home");
        }

现在,当我单击上传按钮时,它会显示两个错误,有时会显示 IO 错误,有时会显示某些文件的HTTP 404错误。怎么了 ?请帮帮我 ?

4

1 回答 1

7

你上传什么大小的文件?一切都超过 1MB 还是小于?

还有你得到什么的404?如果是 404.13(文件大小错误),那么您遇到的问题与我相同。好消息。因为我解决了我的问题。:)

如果您不确定 404 是什么类型(Firebug 会告诉您),请检查您的 Windows 事件日志并在“应用程序”日志中查看如下所示的警告:

  • 事件代码:3004
  • 事件消息:帖子大小超出了允许的限制。

如果你有这两个,那么问题是 IIS(我假设你正在使用)没有设置为允许足够大的内容请求。

首先,将其放入您的网络配置中:

 <system.webServer>
    <security>
      <requestFiltering>
        <!-- maxAllowedContentLength = bytes -->
        <requestLimits maxAllowedContentLength="100000000" />
      </requestFiltering>
    </security>
  </system.webServer>

然后,在“system.web”中:

<!-- maxRequestLength = kilobytes. this value should be smaller than maxAllowedContentLength for the sake of error capture -->    
<httpRuntime maxRequestLength="153600" executionTimeout="900" />

请注意提供的注释 - maxAllowedContentLength 以BYTES为单位,而 maxRequestLength 以KILOBYTES为单位- 差别很大。

我提供的 maxAllowedContentLength 值可让您加载高达 95MB 左右的任何内容。

无论如何,这解决了我的这个问题的版本。

于 2012-08-10T20:34:24.383 回答