控制上传大小
Posted yeyuqian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了控制上传大小相关的知识,希望对你有一定的参考价值。
<httpRuntime requestValidationMode="2.0" maxRequestLength="524288000" useFullyQualifiedRedirectUrl="false" executionTimeout="3600" maxQueryStringLength="102400"/>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1048576000" maxQueryString="102400" />
</requestFiltering>
</security>
</system.webServer>
<system.webServer>
maxAllowedContentLength=xxxxxx 单位k
转载:https://www.cnblogs.com/pukua/p/12598091.html
以上是关于控制上传大小的主要内容,如果未能解决你的问题,请参考以下文章
input file 文件上传,js控制上传文件的大小和格式