码迷,mamicode.com
首页 > Web开发 > 详细

web报错 文件上传“超过了最大请求长度”

时间:2021-03-17 14:07:55      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:runtime   length   请求   config   config文件   大小   文件大小   system   time   

原因:asp.net默认最大上传文件大小为4M,运行超时时间为90S。

修改web.config文件可以改变这个默认值   

  
<configuration>   
   <system.web>  
         <httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
   </system.web>  
<configuration> 

web报错 文件上传“超过了最大请求长度”

标签:runtime   length   请求   config   config文件   大小   文件大小   system   time   

原文地址:https://www.cnblogs.com/zhangbupangpang/p/14539539.html

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