gpt4 book ai didi

c# - 文件上传问题

转载 作者:太空狗 更新时间:2023-10-29 21:11:26 25 4
gpt4 key购买 nike

我需要客户端(终端用户)通过浏览器上传大文件(例如类似Youtube上传大视频文件的场景),文件大小不超过500M字节。

我使用 ASP.Net + C# + VSTS + IIS 7.0 作为我的开发平台。关于如何处理大文件上传问题的任何想法或良好做法?任何引用样本或文件都将受到赞赏。

最佳答案

    <system.web>
<httpRuntime executionTimeout="300" maxRequestLength="512000" />
</system.web>

这在 IIS7 中不起作用! httpRuntime 适用于 IIS6 及以下版本。 IIS7允许大文件上传的正确方法是:

1) 将以下行添加到 web.config 文件中:

[Web.config] IIS7 的 maxAllowedContentLength 属性

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

2)然后打开文件C:\Windows\System32\inetsrv\config\applicationHost.config,找到一行:

<section name="requestFiltering" overrideModeDefault="Allow" />

overrideModeDefault 应该是 Allow。

关于c# - 文件上传问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1021243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com