日期:2014-05-17 浏览次数:20471 次
string k="c:\\test.xls";//文件存放路径
System.IO.FileInfo file = new System.IO.FileInfo(k);
Response.Clear();
Response.Charset = "UTF-8";
Response.ContentEncoding = System.Text.Encoding.UTF8;
// 添加头信息,为"文件下载/另存为"对话框指定默认文件题名
Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name));
// 添加头信息,指定文件大小,让浏览器能够显示下载进度
Response.AddHeader("Content-Length", file.Length.ToString());
// 指定返回的是一个不能被客户端读取的流,必须被下载
Response.ContentType = "Application/ms-excel";
// 把文件流发送到客户端
Response.WriteFile(file.FullName);