System.Web.HttpException(0x80004005):超出最大请求长度

问题描述 投票:0回答:2

我正在尝试在 ASP.NET MVC 5 应用程序中上传大小为 5.25 MB 的 mp4 视频文件。

我尝试将其添加到 Web.config 文件中,在大多数情况下,该文件已成为此问题的公认答案。

<system.web>
    <!-- This will handle requests up to 1024MB (1GB) -->
    <httpRuntime maxRequestLength="1048576" />
</system.web>

我也尝试在 Web.config 中设置超时

<httpRuntime maxRequestLength="1048576" executionTimeout="3600" />

但是,当我上传文件时,我得到了

System.Web.HttpException (0x80004005): Maximum request length exceeded.

也许控制器或视图中需要设置一些东西?

控制器:

[HttpPost]
public ActionResult Index(HttpPostedFileBase file)
{
    if (file != null && file.ContentLength > 0)
    {
        var fileName = Path.GetFileName(file.FileName);
        if (fileName != null)
        {
            var path = Path.Combine(Server.MapPath("~/Content/Videos"), fileName);
            file.SaveAs(path);
        }
    }
    return RedirectToAction("Index");
}

查看:

@using (Html.BeginForm("Edit", "Posts", FormMethod.Post, new { enctype =  "multipart/form-data" }))
{
    <input type="file" name="file" />
    <input type="submit" value="OK" />
}

如何在 ASP.NET MVC 5 中上传视频文件?

asp.net-mvc
2个回答
20
投票

尝试将其添加到 web.config 中(以字节为单位!):

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

0
投票

我试图在我的 cms 上上传图片,但经过一番尝试后,我收到超出最大请求长度的消息。 我请求您解决我的问题

© www.soinside.com 2019 - 2024. All rights reserved.