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 下载文件的主要内容,如果未能解决你的问题,请参考以下文章