我使用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