zoukankan      html  css  js  c++  java
  • 利用Response的WriteFile方法输出一些文件

    protected void Page_Load(object sender, EventArgs e)
    
        {
    
        }
    
        protected void Button1_Click(object sender, EventArgs e)
    
        {
    
            Response.WriteFile("TextFile.txt");
    
        }
    
        protected void Button2_Click(object sender, EventArgs e)
    
        {
    
            string path = Server.MapPath("~/字符串专题.doc");//文件的路径
    
            System.IO.FileInfo file = new System.IO.FileInfo(path);
    
            Response.Clear();
    
            Response.Charset = "utf-8";//设置输出的编码
    
            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/msword";
    
            // 把文件流发送到客户端   
    
            Response.WriteFile(file.FullName);
    
            Response.End();
    
         //   Response.WriteFile("test.doc");
    
        }
    
     
    
     
    
    也可用下面的方法直接打开文件:
    
                ScriptManager.RegisterStartupScript(Page, Page.GetType(), "", "window.open('" + string_FileRelativePath + "', '_blank');", true);
  • 相关阅读:
    C#实现二维码生成与解码
    js中正则表达式使用
    Busybox镜像
    linux删除文件后,空间未释放的一种情况,使用lsof查看
    linux中.nfsxxxx引起的文件无法删除
    linux中的查找命令find,locate,which,whereis
    openj9
    Ali流量控制中间件Sentinel
    LDAP认证模式简介
    nginx支持ipv6
  • 原文地址:https://www.cnblogs.com/qqhfeng/p/12132183.html
Copyright © 2011-2022 走看看