【发布时间】:2012-03-04 23:54:04
【问题描述】:
我想知道一些事情。
当我将文件上传到服务器时,当文件在 25mb 左右时我可以上传它。当它更多时,看起来响应没有结束,所以它没有上传......
这是我的 webconfig ,在服务器上的时间请求限制是 9999 秒 ..
<authorization>
<deny users="?" />
<allow users="*" />
</authorization>
<sessionState cookieless="false"/>
<httpRuntime maxRequestLength="1048576"/>
</system.web>
<appSettings>
<add key="FolderPath" value="uploads" />
</appSettings>
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>
</configuration>
【问题讨论】: