您的位置:首页 > 编程语言 > ASP

解决asp.net 以及MVC中上传文件大小限制的问题

2013-12-24 15:56 806 查看
﹤system.web﹥

﹤httpruntime requestlengthdiskthreshold="256" maxrequestlength="2097151"﹥

﹤/httpruntime﹥

﹤/system.web﹥

<system.webServer>

<security>

<requestFiltering>

<!--500MB-->

<requestLimits maxAllowedContentLength="500000000" />

</requestFiltering>

</security>

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