asp.net 下载文件

Posted qxz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net 下载文件相关的知识,希望对你有一定的参考价值。

protected void btnExcelDownload_Click(object sender, EventArgs e)
        {
            Response.ContentType = "application/x-zip-compressed";
            Response.AddHeader("Content-Disposition", "attachment;filename=InstallRecord.zip");
            string filename = Server.MapPath("../ExcelFiles/InstallRecordTemplate.zip");
            Response.TransmitFile(filename);
        }

 

以上是关于asp.net 下载文件的主要内容,如果未能解决你的问题,请参考以下文章

Asp.net http 处理程序文本文件下载问题。适用于代码隐藏

关于asp.net的下载问题

在 asp.net 中下载 SQL 备份文件

如何使用 asp.net 从路径或文件夹下载 PDF 文件

使用片段 (#) 重定向链接 - asp.net

如何使用 asp.net 以 excel 格式下载 SQL 数据