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

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

 

或加如下一段也可解决.

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

   />

相关文章:

  • 2021-10-09
  • 2021-09-20
  • 2021-09-28
  • 2021-05-21
  • 2021-05-23
  • 2022-12-23
  • 2021-05-19
  • 2021-04-01
猜你喜欢
  • 2022-12-23
  • 2021-06-12
  • 2021-09-04
  • 2022-01-29
  • 2022-12-23
  • 2021-07-03
相关资源
相似解决方案