码迷,mamicode.com
首页 > Windows程序 > 详细

C#限制上传文件大小

时间:2019-09-29 12:59:29      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:cut   type   name   ros   webconfig   ebs   限制   属性   microsoft   

1.WebConfig:

<system.web>
    <authentication mode="None" />
    <compilation debug="true" targetFramework="4.5.2" />
    <httpRuntime targetFramework="4.5.2" appRequestQueueLimit="100" executionTimeout="80"  maxRequestLength="1048576000" useFullyQualifiedRedirectUrl="false" />
    <httpModules>
      <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
    </httpModules>
  </system.web>
  <system.webServer>

<system.webServer>下添加:

<security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="1048576000"/>
      </requestFiltering>
    </security>

 

2.应用程序池:
点击该网站的ASP,打开限制属性,更改最大请求实体主体限制,然后点击应用

C#限制上传文件大小

标签:cut   type   name   ros   webconfig   ebs   限制   属性   microsoft   

原文地址:https://www.cnblogs.com/tfeblog/p/11606968.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!