zoukankan      html  css  js  c++  java
  • 为什么出现下载提示后 点保存 又出现了另一个下载提示 说下载这个页面 例如我的页面

    string path = Server.MapPath(this.xlfile.Text+".xls");

       System.IO.FileInfo file = new System.IO.FileInfo(path);
       Response.Clear();
       Response.Charset="GB2312";
       Response.ContentEncoding=System.Text.Encoding.UTF8;
       // 添加头信息,为"文件下载/另存为"对话框指定默认文件名
       Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(file.Name));
       // 添加头信息,指定文件大小,让浏览器能够显示下载进度
       Response.AddHeader("Content-Length", file.Length.ToString());
       
       // 指定返回的是一个不能被客户端读取的流,必须被下载
       Response.ContentType = "application/ms-excel";
       
       // 把文件流发送到客户端
       Response.WriteFile(file.FullName);
       // 停止页面的执行
      
       Response.End();

    用上面方法
    为什么出现下载提示后 点保存 又出现了另一个下载提示 说下载这个页面 例如我的页面
    叫1.aspx 它提示说下载1.aspx.htm


    谢谢了

  • 相关阅读:
    团队项目-选题报告
    1
    第二次结对编程作业
    第2组 团队展示
    第02组 Alpha冲刺(4/6)
    第02组 Alpha冲刺(3/6)
    第02组 Alpha冲刺(2/6)
    第02组 Alpha冲刺(1/6)
    第02组 团队GIT现场编程实战
    团队项目-需求分析报告
  • 原文地址:https://www.cnblogs.com/goody9807/p/42833.html
Copyright © 2011-2022 走看看