【问题标题】:Is there any limit on file upload in asp.net?asp.net中的文件上传有限制吗?
【发布时间】:2013-04-11 13:22:36
【问题描述】:

我正在服务器上上传大型视频文件并使用 500 MB 文件进行测试。

但我想知道asp.net中文件上传是否有与文件大小相关的限制。

我使用了以下帖子

how to do multi-part video upload using api

并修改为一次读取和写入 32 KB,而不是读取内存中的完整文件。

【问题讨论】:

标签: c# .net


【解决方案1】:

ASP.NET 规定的默认最大值为 4MB。但是,您可以通过 setting the maxRequestLength in the web config 更改它。

【讨论】:

    【解决方案2】:

    如果您编辑 web.config 并更改 httpRuntime 中的 maxRequestLength 属性,则它是 System.Int32,因此最大值为 2,147,483,647(约 2gb)。

    【讨论】:

    猜你喜欢
    • 2014-08-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-01-19
    • 1970-01-01
    • 2020-02-15
    • 2016-04-11
    • 1970-01-01
    相关资源
    最近更新 更多