我在服务器上有一个 5Mb 的 pdf 文件,使用 writeFile 下载这个文件给了我 15Mb 的下载量,而传输文件给出了正确的 5Mb 文件大小......
这是由于 writeFile 对服务器上的内存进行了某种解压缩吗?只是想知道有没有人看到同样的事情发生......
(ps直到我们去iis7才注意到它??)
代码正在...
if (File.Exists(filepath))
{
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.ContentType = "application/octet-stream";
HttpContext.Current.Response.AddHeader("content-disposition","attachment;filename=\""+Path.GetFileName(filepath)+"\"");
HttpContext.Current.Response.AddHeader("content-length", new FileInfo(filepath).Length.ToString());
//HttpContext.Current.Response.WriteFile(filepath);
HttpContext.Current.Response.TransmitFile(filepath);
HttpContext.Current.Response.Flush();
HttpContext.Current.Response.Close();
}