以下是代码:

  1. protected void Button1_Click(object sender, EventArgs e)
  2. {
  3. this.DownLoadFile("说明.txt");
  4. }
  5. //下载函数
  6. private void DownLoadFile(string fileName)
  7. {
  8. string filePath = Server.MapPath(".") + "\\" + fileName;
  9. if (File.Exists(filePath))
  10. {
  11. FileInfo file = new FileInfo(filePath);
  12. Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8"); //解决中文乱码
  13. Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name)); //解决中文文件名乱码
  1. Response.AddHeader("Content-length", file.Length.ToString());
  2. Response.ContentType = "appliction/octet-stream";
  3. Response.WriteFile(file.FullName);
  4. Response.End();
  5. }
  6. }

 

版权声明:本文为hfzsjz原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/hfzsjz/p/3260969.html