码迷,mamicode.com
首页 > Web开发 > 详细

asp.net 下载文件

时间:2016-06-06 18:28:39      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

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 下载文件

标签:

原文地址:http://www.cnblogs.com/xinzheng/p/5564484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!