Young87

SmartCat's Blog

So happy to code my life!

游戏开发交流QQ群号60398951

当前位置:首页 >Asp.Net

HttpException (0x80004005): 超过了最大请求长度

 Asp.net中,上传文件的默认大小是4096 KB,也就是4M,不过你可以在Web.config中更改这个数据。

方法: 在web.config的授权节上写长度限制吧.maxRequestLength= "102400 " 这一句,单位为k (写在<system.web>中)

<configuration>

<system.web>

<httpRuntime   executionTimeout= "9000"   maxRequestLength="502400"   useFullyQualifiedRedirectUrl= "false " minFreeThreads= "8 "   minLocalRequestFreeThreads= "4 "   appRequestQueueLimit= "100 "/>

</system.web>

</configuration>

除特别声明,本站所有文章均为原创,如需转载请以超级链接形式注明出处:SmartCat's Blog

上一篇: 非web.ui.page类Session读写问题

下一篇: Access插入日期的坑

精华推荐