web.fonfig设置上传文件的最大大小

来源:互联网 发布:阿里的算法工程师年薪 编辑:程序博客网 时间:2024/04/29 10:40

在web.config中添加httpRuntime元素,如下:
<configuration>
   <system.web>
      <httpRuntime maxRequestLength="8192"
         useFullyQualifiedRedirectUrl="true"
         executionTimeout="45"
         versionHeader="1.1.4128"/>
   </system.web>
</configuration>
其中maxRequestLength属性就是限制上传大小的,如设为"8192"即为8M。  

原创粉丝点击