Excel 从ASP.NET 服务器下载到 本地

来源:互联网 发布:百度输入法 for mac 编辑:程序博客网 时间:2024/06/11 22:04

  System.IO.FileInfo file = newSystem.IO.FileInfo(path2);

                Response.Clear();

                Response.Charset ="GB2312";

                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/x-bittorrent";

               Response.WriteFile(file.FullName);

0 0
原创粉丝点击