如何用dotnet核心增加上传大小?

时间:2018-04-26 14:20:05

标签: .net-core

我使用dotnet核心,我得到这样的错误:

HTTP Error 404.13 - Not Found
The request filtering module is configured to deny a request that exceeds the request content length.

我试过用这个:

[DisableRequestSizeLimit]
    public class HomeController : Controller
    {

我也尝试过:

[HttpPost]
        [RequestSizeLimit(100_000_000)]
        public IActionResult ProcessFile(IFormFile file)
        {

但仍无法上传文件,大小为50MB +

如何增加dotnet core 2中的上传大小

我使用IIS Express

0 个答案:

没有答案