113

我正在编写一个上传函数,并且在文件大于httpRuntimeweb.config 中指定的最大大小(最大大小设置为 5120)的情况下捕获“System.Web.HttpException:超出最大请求长度”时遇到问题。我正在使用一个简单<input>的文件。

问题是在上传按钮的点击事件之前引发了异常,并且在我的代码运行之前发生了异常。那么如何捕获和处理异常呢?

编辑:异常会立即抛出,所以我很确定这不是由于连接速度慢而导致的超时问题。

4

16 回答 16

97

不幸的是,没有简单的方法来捕捉这种异常。我所做的是要么覆盖页面级别的 OnError 方法,要么覆盖 global.asax 中的 Application_Error,然后检查它是否是 Max Request 失败,如果是,则转移到错误页面。

protected override void OnError(EventArgs e) .....


private void Application_Error(object sender, EventArgs e)
{
    if (GlobalHelper.IsMaxRequestExceededException(this.Server.GetLastError()))
    {
        this.Server.ClearError();
        this.Server.Transfer("~/error/UploadTooLarge.aspx");
    }
}

这是一个黑客,但下面的代码对我有用

const int TimedOutExceptionCode = -2147467259;
public static bool IsMaxRequestExceededException(Exception e)
{
    // unhandled errors = caught at global.ascx level
    // http exception = caught at page level

    Exception main;
    var unhandled = e as HttpUnhandledException;

    if (unhandled != null && unhandled.ErrorCode == TimedOutExceptionCode)
    {
        main = unhandled.InnerException;
    }
    else
    {
        main = e;
    }


    var http = main as HttpException;

    if (http != null && http.ErrorCode == TimedOutExceptionCode)
    {
        // hack: no real method of identifying if the error is max request exceeded as 
        // it is treated as a timeout exception
        if (http.StackTrace.Contains("GetEntireRawContent"))
        {
            // MAX REQUEST HAS BEEN EXCEEDED
            return true;
        }
    }

    return false;
}
于 2009-03-20T10:20:17.413 回答
58

正如 GateKiller 所说,您需要更改 maxRequestLength。如果上传速度太慢,您可能还需要更改 executionTimeout。请注意,您不希望这些设置中的任何一个太大,否则您将容易受到 DOS 攻击。

executionTimeout 的默认值为 360 秒或 6 分钟。

您可以使用httpRuntime 元素更改 maxRequestLength 和 executionTimeout 。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.web>
        <httpRuntime maxRequestLength="102400" executionTimeout="1200" />
    </system.web>
</configuration>

编辑:

如果您想处理异常,那么正如已经说明的那样,您需要在 Global.asax 中处理它。这是一个代码示例的链接。

于 2009-03-20T09:47:33.340 回答
20

您可以通过增加 web.config 中的最大请求长度来解决此问题:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.web>
        <httpRuntime maxRequestLength="102400" />
    </system.web>
</configuration>

上面的示例适用于 100Mb 的限制。

于 2009-03-20T09:34:36.617 回答
10

如果您还想要客户端验证,这样您就不需要抛出异常,您可以尝试实现客户端文件大小验证。

注意:这仅适用于支持 HTML5 的浏览器。 http://www.html5rocks.com/en/tutorials/file/dndfiles/

<form id="FormID" action="post" name="FormID">
    <input id="target" name="target" class="target" type="file" />
</form>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>

<script type="text/javascript" language="javascript">

    $('.target').change(function () {

        if (typeof FileReader !== "undefined") {
            var size = document.getElementById('target').files[0].size;
            // check file size

            if (size > 100000) {

                $(this).val("");

            }
        }

    });

</script>

于 2011-07-05T10:56:02.760 回答
9

嗨 Damien McGivern 提到的解决方案,仅适用于 IIS6,

它不适用于 IIS7 和 ASP.NET 开发服务器。我的页面显示“404 - 找不到文件或目录”。

有任何想法吗?

编辑:

明白了......这个解决方案仍然不能在 ASP.NET 开发服务器上运行,但我知道它在我的情况下不能在 IIS7 上运行的原因。

原因是 IIS7 有一个内置的请求扫描,它强制上传文件上限,默认为 30000000 字节(略小于 30MB)。

我试图上传大小为 100 MB 的文件来测试 Damien McGivern 提到的解决方案(在 web.config 中使用 maxRequestLength="10240" 即 10MB)。现在,如果我上传大小 > 10MB 且 < 30 MB 的文件,则页面将重定向到指定的错误页面。但如果文件大小 > 30MB,那么它会显示丑陋的内置错误页面,显示“404 - 找不到文件或目录”。

因此,为避免这种情况,您必须增加最大值。您的网站在 IIS7 中允许的请求内容长度。这可以使用以下命令来完成,

appcmd set config "SiteName" -section:requestFiltering -requestLimits.maxAllowedContentLength:209715200 -commitpath:apphost

我已经设置了最大值。内容长度为 200MB。

完成此设置后,当我尝试上传 100MB 的文件时,页面成功重定向到我的错误页面

有关详细信息,请参阅http://weblogs.asp.net/jgalloway/archive/2008/01/08/large-file-uploads-in-asp-net.aspx

于 2010-07-07T12:22:55.960 回答
8

这是另一种方法,它不涉及任何“黑客”,但需要 ASP.NET 4.0 或更高版本:

//Global.asax
private void Application_Error(object sender, EventArgs e)
{
    var ex = Server.GetLastError();
    var httpException = ex as HttpException ?? ex.InnerException as HttpException;
    if(httpException == null) return;

    if(httpException.WebEventCode == WebEventCodes.RuntimeErrorPostTooLarge)
    {
        //handle the error
        Response.Write("Sorry, file is too big"); //show this message for instance
    }
}
于 2015-05-23T20:00:53.673 回答
4

一种方法是在 web.config 中设置最大大小,如上文所述,例如

<system.web>         
    <httpRuntime maxRequestLength="102400" />     
</system.web>

然后当您处理上传事件时,检查大小,如果超过特定数量,您可以捕获它,例如

protected void btnUploadImage_OnClick(object sender, EventArgs e)
{
    if (fil.FileBytes.Length > 51200)
    {
         TextBoxMsg.Text = "file size must be less than 50KB";
    }
}
于 2012-09-14T22:12:50.923 回答
3

适用于 IIS7 及更高版本的解决方案:当文件上传超出 ASP.NET MVC 中允许的大小时显示自定义错误页面

于 2010-09-24T13:07:32.757 回答
3

在 IIS 7 及更高版本中:

web.config 文件:

<system.webServer>
  <security >
    <requestFiltering>
      <requestLimits maxAllowedContentLength="[Size In Bytes]" />
    </requestFiltering>
  </security>
</system.webServer>

然后,您可以签入后面的代码,如下所示:

If FileUpload1.PostedFile.ContentLength > 2097152 Then ' (2097152 = 2 Mb)
  ' Exceeded the 2 Mb limit
  ' Do something
End If

只要确保 web.config 中的 [Size In Bytes] 大于您要上传的文件的大小,您就不会收到 404 错误。然后,您可以使用 ContentLength 在后面的代码中检查文件大小,这会更好

于 2014-06-23T11:26:12.710 回答
2

您可能知道,最大请求长度配置在两个地方。

  1. maxRequestLength- 在 ASP.NET 应用程序级别控制
  2. maxAllowedContentLength- under <system.webServer>, 在 IIS 级别控制

该问题的其他答案涵盖了第一种情况。

要赶上第二个,您需要在 global.asax 中执行此操作:

protected void Application_EndRequest(object sender, EventArgs e)
{
    //check for the "file is too big" exception if thrown at the IIS level
    if (Response.StatusCode == 404 && Response.SubStatusCode == 13)
    {
        Response.Write("Too big a file"); //just an example
        Response.End();
    }
}
于 2016-12-22T10:30:58.797 回答
2

我正在使用 FileUpload 控件和客户端脚本来检查文件大小。
HTML(注意 OnClientClick - 在 OnClick 之前执行):

<asp:FileUpload ID="FileUploader" runat="server" />
<br />
<asp:Button ID="btnUpload" Text="Upload" runat="server" OnClientClick="return checkFileSize()" OnClick="UploadFile" />
<br />
<asp:Label ID="lblMessage" runat="server" CssClass="lblMessage"></asp:Label>

然后是脚本(如果尺寸太大,请注意'return false':这是取消 OnClick):

function checkFileSize() 
{
    var input = document.getElementById("FileUploader");
    var lbl = document.getElementById("lblMessage");
    if (input.files[0].size < 4194304)
    {
        lbl.className = "lblMessage";
        lbl.innerText = "File was uploaded";
    }
    else
    {
        lbl.className = "lblError";
        lbl.innerText = "Your file cannot be uploaded because it is too big (4 MB max.)";
        return false;
    }
}
于 2020-09-29T16:25:22.207 回答
1

标记后

<security>
     <requestFiltering>
         <requestLimits maxAllowedContentLength="4500000" />
     </requestFiltering>
</security>

添加以下标签

 <httpErrors errorMode="Custom" existingResponse="Replace">
  <remove statusCode="404" subStatusCode="13" />
  <error statusCode="404" subStatusCode="13" prefixLanguageFilePath="" path="http://localhost/ErrorPage.aspx" responseMode="Redirect" />
</httpErrors>

您可以将 URL 添加到错误页面...

于 2016-04-05T18:44:52.407 回答
0

您可以通过增加 web.config 中的最大请求长度和执行超时来解决此问题:

-请澄清最大执行时间超过 1200

<?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <httpRuntime maxRequestLength="102400" executionTimeout="1200" /> </system.web> </configuration>
于 2014-06-24T07:19:33.427 回答
0

在 EndRequest 事件中抓住它怎么样?

protected void Application_EndRequest(object sender, EventArgs e)
    {
        HttpRequest request = HttpContext.Current.Request;
        HttpResponse response = HttpContext.Current.Response;
        if ((request.HttpMethod == "POST") &&
            (response.StatusCode == 404 && response.SubStatusCode == 13))
        {
            // Clear the response header but do not clear errors and
            // transfer back to requesting page to handle error
            response.ClearHeaders();
            HttpContext.Current.Server.Transfer(request.AppRelativeCurrentExecutionFilePath);
        }
    }
于 2016-04-22T16:04:09.983 回答
0

可以通过以下方式检查:

        var httpException = ex as HttpException;
        if (httpException != null)
        {
            if (httpException.WebEventCode == System.Web.Management.WebEventCodes.RuntimeErrorPostTooLarge)
            {
                // Request too large

                return;

            }
        }
于 2019-03-25T08:06:42.773 回答
0

跟进 Martin van Bergeijk 的回答,我添加了一个额外的 if 块来检查他们是否在提交之前实际选择了一个文件。

if(input.files[0] == null)
{lbl.innertext = "You must select a file before selecting Submit"}
return false;        
于 2021-07-29T15:51:35.900 回答