其他分享
首页 > 其他分享> > IIS中的大文件上传

IIS中的大文件上传

作者:互联网

webconfig中加入以下代码:

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

 

标签:文件,IIS,加入,webconfig,代码,上传
来源: https://www.cnblogs.com/li-guojiang/p/14499463.html