当前位置:主页 > 软件编程 > .NET代码 >

Asp.NET控制文件上传的大小方法(超简单)

时间:2021-04-13 09:16:15 | 栏目:.NET代码 | 点击:

在web.config中的system.web 节点下添加如下代码:

第2行的maxRequestLength="8192",这里限制最大为8MB,可以自行设置。executionTimeout="800",executionTimeout预设(即默认)是 90 秒

<system.web>
  <httpRuntime maxRequestLength="8192" executionTimeout="800"/>
</system.web>

您可能感兴趣的文章:

相关文章