下载文件相关

1.下载Excelapp

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.下载压缩文件ui

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));
相关文章
相关标签/搜索