错误:使用ASP.NET从目录下载文件
本文关键字:下载 文件 NET 使用 ASP 错误 | 更新日期: 2023-09-27 18:22:04
我正在尝试下载一个存储在HDD中的文件。现在我尝试使用这段代码,这些代码用于按钮点击事件。但问题是,当我点击按钮时,它会下载我的表单(在我的例子中是"DAO.aspx"),而不是文件(SampleFile.xlsx);
protected void BtnDownload_Click(object sender, EventArgs e)
{
try
{
Response.Clear();
Response.ContentType = "application/octect-stream";
Response.AppendHeader("content-disposition", "attachment; filename=SampleFile.xlsx");
Response.TransmitFile(Server.MapPath("~/SampleExcel/SampleFile.xlsx"));
Response.End();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
试试这个:
Response.ClearHeaders();
Response.ClearContent();
Response.ContentType = "Application/octect-stream";
Response.AppendHeader("Content-disposition", "attachment; filename=SampleFile.xlsx");
Response.WriteFile(Server.MapPath("~/SampleExcel/SampleFile.xlsx"));