iis7 上传大文件那点事

这几天有个项目要上传打文件 结果设置  

<system.web>
<httpRuntime maxRequestLength="1048576" executionTimeout="120" /> 
</system.web>

  这样后无效 大于30mb的还是无法上传

百度 谷歌之后找到原因

<system.webServer>
    <!--设置最大允许上传文件大小1G-->
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="1073741824" />
      </requestFiltering>
    </security>
</system.webServer>

还得设置这个 至此问题解决

 

posted @ 2013-01-10 10:55  地狱在左  阅读(168)  评论(0编辑  收藏  举报