您的位置:首页 > 游戏 > 手游 > 360免费wifi密码_有哪些免费ppt模板下载网址_聊城seo培训_成都网站快速优化排名

360免费wifi密码_有哪些免费ppt模板下载网址_聊城seo培训_成都网站快速优化排名

2024/12/23 22:13:22 来源:https://blog.csdn.net/hefeng_aspnet/article/details/144503646  浏览:    关键词:360免费wifi密码_有哪些免费ppt模板下载网址_聊城seo培训_成都网站快速优化排名
360免费wifi密码_有哪些免费ppt模板下载网址_聊城seo培训_成都网站快速优化排名

        使用ASP.NET Core上传文件,可以参考官方文档: 使用缓冲模型绑定上传小文件到物理存储。

 
        默认情况下,Windows IIS 将maxRequestLengthmaxAllowedContentLength分别限制为 4096 KB 和 30,000,000 字节。要上传大于这些限制的文件,您需要覆盖网站根web.config文件中的默认设置并修改 ASP.NET Core 表单设置。
 
下面是一个如何修改Program.csweb.config文件以增加最大文件上传大小的示例:

Program.cs 

// using packages.
// ...
using Microsoft.AspNetCore.Http.Features;var builder = WebApplication.CreateBuilder(args);// Add services to the container.
// ...builder.Services.Configure<IISServerOptions>(options=>
{// 1024MBoptions.MaxRequestBodySize = 104857600;
});builder.Services.Configure<FormOptions>(options =>
{// 1024MBoptions.MultipartBodyLengthLimit = 104857600;
});var app = builder.Build();// ...

web.config 

<?xml version="1.0" encoding="utf-8"?>
<configuration><system.web><!-- change the max to 1024 MB --><httpRuntime maxRequestLength="104857600" /></system.web><system.webServer><security><requestFiltering><!-- change the max to 1024 MB --><requestLimits maxAllowedContentLength="104857600" /></requestFiltering></security></system.webServer>
</configuration>

如果您的应用程序也使用Kestrel设置,您还应该像这样覆盖Program.cs文件中的默认设置: 

// using packages.
// ...var builder = WebApplication.CreateBuilder(args);builder.Host.ConfigureWebHostDefaults(webBuilder =>
{webBuilder.ConfigureKestrel((context, options) =>{options.Limits.MaxRequestBodySize = 104857600;});
});// Add services to the container.
// ...

如果您喜欢此文章,请收藏、点赞、评论,谢谢,祝您快乐每一天。 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com