您的位置:首页 > 其它

设置文件上传的最大大小

2018-09-17 10:47 405 查看

1>iis7及以上版本

需要在配置文件里面设置文件上传限定的两个属性值:maxAllowedContentLength,maxRequestLength 允许上传文件的长度,和请求的长度,两个大小需要设置一致,如果不一致,则以请求长度为准。

<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2097151000" />
</requestFiltering>
</security>
</system.webServer>

  

<system.web>
<httpRuntime executionTimeout="36000" maxRequestLength="2097151000" useFullyQualifiedRedirectUrl="false"/>
</system.web>

2>iis6

 设置executionTimeout和maxRequestLength即可。

<system.web>
<httpRuntime executionTimeout="36000" maxRequestLength="2097151000" useFullyQualifiedRedirectUrl="false"/>
</system.web>

  

转载自:https://www.cnblogs.com/Joans/p/4315411.html

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: