Qianshi's Blog
38 字
1 分钟
Asp.Net Core IIS Upload big file error issue
2022-06-13

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/
作者
Qian Shi
发布于
2022-06-13
许可协议
CC BY-NC-SA 4.0