原因:
当 ASP.NET 辅助进程(Aspnet_wp.exe,对于在 Internet 信息服务 6.0 [IIS] 上运行的应用程序,则为 W3wp.exe)执行文件下载请求时,向 Microsoft Internet 信息服务进程(Inetinfo.exe 或 Dllhost.exe)发送数据。
根据计算机的配置,IIS 进程可能会处理数据,也可能会将数据缓存在内存中。如果文件太大,在这两个进程相互通信的过程中,数据将被缓存在内存中。这可能会导致服务器上的内存使用量增加。出现此错误的原因是 Web 服务器上的内存限制。
解决方法:
解决方法1:
大文件切割成小数据块,然后逐步添加到输出流,MSDN上给出的代码样例
<!--<br><br>Code highlighting produced by Actipro CodeHighlighter (freeware)<br>http://www.CodeHighlighter.com/<br><br>-->
System.IO.StreamiStream=null;
//Buffertoread10Kbytesinchunk:
byte[]buffer=newByte[10000];
//Lengthofthefile:
intlength;
//Totalbytestoread:
longdataToRead;
//Identifythefiletodownloadincludingitspath.
stringfilepath="DownloadFileName";
//Identifythefilename.
stringfilename=System.IO.Path.GetFileName(filepath);
try

{
//Openthefile.
iStream=newSystem.IO.FileStream(filepath,System.IO.FileMode.Open,
System.IO.FileAccess.Read,System.IO.FileShare.Read);

//Totalbytestoread:
dataToRead=iStream.Length;
Response.ContentType="application/octet-stream";
Response.AddHeader("Content-Disposition","attachment;filename="+filename);
//Readthebytes.
while(dataToRead>0)

{
//Verifythattheclientisconnected.
if(Response.IsClientConnected)

{
//Readthedatainbuffer.
length=iStream.Read(buffer,0,10000);
//Writethedatatothecurrentoutputstream.
Response.OutputStream.Write(buffer,0,length);
//FlushthedatatotheHTMLoutput.
Response.Flush();
buffer=newByte[10000];
dataToRead=dataToRead-length;
}
else

{
//preventinfiniteloopifuserdisconnects
dataToRead=-1;
}
}
}
catch(Exceptionex)

{
//Traptheerror,ifany.
Response.Write("Error:"+ex.Message);
}
finally

{
if(iStream!=null)

{
//Closethefile.
iStream.Close();
}
}
把站点的Web.config文件中的<compilation debug="true" batch="false">配置节修改为:<compilation debug="false" batch="false">
MSDN上的解释:
当您在 ASP.NET 应用程序的 Web.config 文件中将编译元素的 debug 属性值设置为 false 时,必须针对要下载的文件大小将 Server.ScriptTimeout 属性设置为适当的值。默认情况下,Server.ScriptTimeout 值被设置为 90 秒。但是,当 debug 属性被设置为 true 时,Server.ScriptTimeout 值将被设置为一个非常大的值(30,000,000 秒)。作为一名开发人员,您必须知道这可能会对您的 ASP.NET Web 应用程序的行为造成的影响。
由于开发环境在我们建立Web应用的时候会默认将Web.config的这一配置节修改为可调试的状态,这将降低web应用程序的性能,所以我们在部署的时候常常会忽略掉这个配置。亡羊补牢,大家都检查一下自己的配置文件吧,Asp.net配置文件参考资料:
解决IIS大文件下载问题
本文介绍了解决IIS处理大文件下载时CPU占用率高及内存使用量增加的问题。通过将大文件切割成小数据块逐步发送,以及调整Web.config配置来优化性能。
1375

被折叠的 条评论
为什么被折叠?



