• 博客园logo
  • 会员
  • 周边
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
宅男男
博客园    首页    新随笔    联系   管理    订阅  订阅

利用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");

    }

posted @ 2011-11-15 16:11  宅男男  阅读(1107)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3