凌寒飘香

____成风破浪会有时,直把云帆济沧海!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: :: 管理 ::

这个错误的引起是因为应用程序最大请求字节长度超过了默认请求字节长度,可以在Web.Config添加如下配置:

<system.web>下面加上下面一句.搞定.
  <httpRuntime executionTimeout="300" maxRequestLength="51200"/>

 

或加如下一段也可解决.

  <httpRuntime
   executionTimeout="1200"
   maxRequestLength="102400"
   useFullyQualifiedRedirectUrl="false"
   minFreeThreads="8"
   minLocalRequestFreeThreads="4"
   appRequestQueueLimit="100"

   />

posted on 2008-08-15 19:43  凌寒飘香  阅读(3290)  评论(0编辑  收藏  举报