38 字
1 分钟
Asp.Net Core IIS Upload big file error issue
iis配置 // 最大为2147483648 2GB
Startup // 设置最大长度 services.Configure
(x => { x.ValueLengthLimit = int.MaxValue; x.MultipartBodyLengthLimit = long.MaxValue; x.MemoryBufferThreshold = int.MaxValue; }); 控制器
RequestSizeLimit(long.MaxValue)
Asp.Net Core IIS Upload big file error issue
https://kuriyama.top/posts/dotnet/asp-net-core-iis-upload-big-file-error-issue/