2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > .NET文件上传的大小限制配置

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

时间:2020-02-06 03:23:25

相关推荐

.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>

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