上传文件提示IO Error

百度查到的解决办法

http://www.wang0214.com/news/466.html

作者:深圳网站建设

原因:
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>

posted @ 2016-04-18 15:44  Danlis  阅读(649)  评论(0编辑  收藏  举报