首页 > 代码库 > MVC3 中上传大文件
MVC3 中上传大文件
MVC3中上传大文件,发现文件超过10M就不能上传。文件上传的限制也改了,仍然不起作用。解决办法如下:
第一步:在web.config中添加:
<system.web> <!-- The request length is in kilobytes, execution timeout is in seconds --> <httpRuntime maxRequestLength="100240" executionTimeout="500" /> </system.web>
第二步:在web.config中添加:
<system.webServer> <security> <requestFiltering> <!-- The content length is in bytes --> <requestLimits maxAllowedContentLength="150485760"/> </requestFiltering> </security> </system.webServer>
MVC3 中上传大文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。