当前位置 : 主页 > 网络编程 > net编程 >

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

来源:互联网 收集:自由互联 发布时间:2021-07-08
在web.config中的system.web 节点下添加如下代码: 第2行的maxRequestLength="8192",这里限制最大为8MB,可以自行设置。executionTimeout="800",executionTimeout预设(即默认)是 90 秒 system.web httpRuntime

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

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

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

以上这篇Asp.NET控制文件上传的大小方法(超简单)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持易盾网络。

网友评论