zoukankan      html  css  js  c++  java
  • ASP.NET导出word实例

    ASP.NET导出word实例

    最近遇到一个题目就是如何在asp.net中将数据导出到word中,由于数据是动态的,所以需要在后台拼出想要的的格式,翻遍了网页找出了一个比较满意的代码,感谢那位高手。代码如下:

    复制代码
      public void Download()
            {
                Random rd = new Random();
                string fileName = DateTime.Now.ToString("yyyyMMddhhmm") + rd.Next() + ".doc";
                //存储路径
                string path = Server.MapPath(fileName);
                //创建字符输出流
                StreamWriter sw = new StreamWriter(path, true, System.Text.UnicodeEncoding.UTF8);
                //需要导出的内容
               // string str = "<html><head><title>无标题文档</title></head><body>这里放从数据库导出的word文档内容</body></html>";
                string str = "";
                str += "<html><head><title>无标题文档</title></head><body>";
                str += "<div>阅读报表</div>";
                str += "<table border='1'><tr>";
                str += "<td>20000</td>";
                str += "<td>10000</td></tr><tr>";
                str += "<td>30000</td>";
                str += "<td>30000</td><tr>";
                str += "</table></body></html>";
                //写入
                sw.Write(str);
                sw.Close();
                Response.Clear();
                Response.Buffer = true;
                this.EnableViewState = false;
                Response.Charset = "utf-8";
                Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
                Response.ContentType = "application/octet-stream";
                Response.WriteFile(path);
                Response.Flush();
                Response.Close();
                Response.End();
            }
    复制代码
  • 相关阅读:
    ZOJ 3609 Modular Inverse (水题)
    ZOJ 3607 Lazier Salesgirl (贪心)
    POJ 1730 Perfect Pth Powers (枚举||分解质因子)
    POJ 2262 Goldbach's Conjecture (素数判断)
    LA 3135 Argus (优先队列)
    uva 11991 (map vector 嵌套)
    hdu 1022 Train Problem I(stack)
    poj 1837 blance (01背包)
    hdu 1242 rescue (优先队列 bfs)
    hdu 3033 I love sneakers!(分组背包)
  • 原文地址:https://www.cnblogs.com/yyy116008/p/6703225.html
Copyright © 2011-2022 走看看