600字范文,内容丰富有趣,生活中的好帮手!
600字范文 > .NET文件上传的大小限制配置

.NET文件上传的大小限制配置

时间:2023-07-11 12:51:23

相关推荐

.NET文件上传的大小限制配置

<system.web>

<!--maxRequestLength单位是Kb-->

<httpRuntime maxRequestLength="2097152" executionTimeout="3600" />

</system.web>

<system.webServer>

<security>

<requestFiltering>

<!--IIS7的设置,maxAllowedContentLength单位是Bytes-->

<requestLimits maxAllowedContentLength="2147483648" />

</requestFiltering>

</security>

</system.webServer>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。