首页 > Web开发 > 详细

asp.net fileupload上传大文件时提示404.13错误

时间:2014-02-19 04:13:58      阅读:579      评论:0      收藏:0      [点我收藏+]

IIS 7 默认文件上传大小时30M 要突破这个限制,需要做如下操作:

1. 修改IIS的applicationhost.config     打开 %windir%\system32\inetsrv\config\applicationhost.config或者在C://   system32//inetsrv//config//applicationhost.config   找到: <requestFiltering>节点,   这个节点默认没有 <requestLimits maxAllowedContentLength="上传大小的值(单位:byte)" /> 元素,  最大值只能是<requestLimits maxAllowedContentLength="4294967295" />  <4GB,      为这个节点新增如下事例元素:<requestLimits maxAllowedContentLength="2147483647" /> ,上传的大小将改为2G 注意: %windir%\system32\inetsrv\config\applicationhost.config 文件一定不要用其他机器的文件替换,否则IIS将无法启动 此文件记录了,当前IIS中所有Site , App pool的信息,还有一些与机器相关的配置。

2 修改web.config <system.web>      <httpRuntime executionTimeout="36000" maxRequestLength="2097151"/>   <!--maxRequestLength:上传的大小,单位K   ,executionTimeout:设置超时时间,单位:秒。(默认是90秒) --> </system.web>

 注意:这个maxRequestLength最大值只能是2097151K

asp.net fileupload上传大文件时提示404.13错误

原文:http://www.cnblogs.com/lff255356/p/3554356.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!