在web.config中找到相应节点,插入一行代码即可:实际上是服务器的延时不够的问题,再就是asp.net默认最大上传文件大小为4096 k  
 
<configuration>
<system.web>
     <httpRuntime maxRequestLength="10000"  executionTimeout="3600" />
</system.web>
<configuration>

相关文章:

  • 2021-11-17
  • 2021-10-25
  • 2021-08-23
  • 2021-12-05
  • 2021-10-26
  • 2022-12-23
  • 2021-10-01
猜你喜欢
  • 2021-07-29
  • 2021-10-08
  • 2022-01-28
  • 2021-07-23
  • 2021-03-31
相关资源
相似解决方案