gpt4 book ai didi

c# - 在 C# 中使用 Web Client 时是否有上传限制?

转载 作者:行者123 更新时间:2023-11-30 15:27:43 26 4
gpt4 key购买 nike

将 UploadFile("upload.php", "POST", filePath) 与 WebClient 一起使用,任何超过 4mb 的内容都不会上传。 PHP 中的限制设置为 48mb。我需要在 C# 中设置吗?

最佳答案

在 ASP.NET 中有一个默认的 maxRequestLength 设置为 4MB,您可以在 web.config 中更改它。

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

长度在配置文件中以 KB 为单位指定。如果您使用的是 IIS,则 IIS 将额外限制设置为 4MB。

关于c# - 在 C# 中使用 Web Client 时是否有上传限制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26941906/

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