由于需要用C#写一个FTP客户端,当完成后发现传输大容量文件时,页面老死掉。最后上网查找资料发现是由于在web.config中没有对容量进行配置,所以只要在web.config中加入容量的配置即可解决。
<httpRuntime maxRequestLength="1048576" useFullyQualifiedRedirectUrl="true" executionTimeout="36000"
minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" enableVersionHeader="true" />