![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
string path = @"../../TemplateForDownload/AddressBook.xls"; if (File.Exists(Server.MapPath(path))) { //ExportFilePath = fileName; //string _RootPath = HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath).ToLower();//当前的绝对路径 Response.ContentType = "application/ms-excel;charset=UTF-8"; Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode("通讯录模板.xls"));//解决中文乱码 string filename = Server.MapPath(path); Response.TransmitFile(path); }