无法在visualstudios服务器中上传声音文件

时间:2009-07-01 04:03:32

标签: asp.net upload

每当我尝试上传声音文件时,IO都会收到错误“在加载页面时,重置了与服务器的连接。”。声音文件是5.58mb,一个.OGG。我的服务器是visual studios 9(2008)。表单使用enctype =“multipart / form-data”。我有一种感觉它可能是文件大小限制,但我不知道在哪里更改允许的文件长度。

如何修复“在加载页面时重置了与服务器的连接。”我的代码中有问题吗?

1 个答案:

答案 0 :(得分:2)

在web.config中:

  <system.web>
       <httpRuntime  maxRequestLength="1048576" executionTimeout="3600" />
        <sessionState timeout="60" />
  </system.web>

我发现你可以在wrox网站的httpruntime中添加更多内容:

     <httpRuntime
     executionTimeout="110" 
     maxRequestLength="4096" 
     requestLengthDiskThreshold="80" 
     useFullyQualifiedRedirectUrl="false" 
     minFreeThreads="8" 
     minLocalRequestFreeThreads="4" 
     appRequestQueueLimit="5000" 
     enableKernelOutputCache="true" 
     enableVersionHeader="true" 
     requireRootedSaveAsPath="true" 
     enable="true" 
     shutdownTimeout="90" 
     delayNotificationTimeout="5" 
     waitChangeNotification="0" 
     maxWaitChangeNotification="0" 
     enableHeaderChecking="true" 
     sendCacheControlHeader="true" 
     apartmentThreading="false" />