1.下载Excel
Response.AddHeader("Pragma", "public"); Response.AddHeader("Cache-Control", "max-age=0"); Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", Guid.NewGuid().ToString("N") + ".xml")); Response.ContentEncoding = Encoding.UTF8; Response.ContentType = "application/octet-stream"; Response.Write(result.TData.ToString());
2.下载压缩文件
Response.AddHeader("Pragma", "public"); Response.AddHeader("Cache-Control", "max-age=0"); Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", zipFileName)); Response.ContentEncoding = Encoding.UTF8; Response.ContentType = "application/zip"; Response.BinaryWrite(System.IO.File.ReadAllBytes(outZipFileFile));
时间: 2024-10-23 16:10:46