网络编程 
首页 > 网络编程 > 浏览文章

ASP.NET导出word实例

(编辑:jimmy 日期: 2026/5/7 浏览:3 次 )

最近遇到一个题目就是如何在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();
  }

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!

上一篇:使用Topshelf组件构建简单的Windows服务
下一篇:Visual Studio ASP.NET Core MVC入门教程第一篇
一句话新闻
高通与谷歌联手!首款骁龙PC优化Chrome浏览器发布
高通和谷歌日前宣布,推出首次面向搭载骁龙的Windows PC的优化版Chrome浏览器。
在对骁龙X Elite参考设计的初步测试中,全新的Chrome浏览器在Speedometer 2.1基准测试中实现了显著的性能提升。
预计在2024年年中之前,搭载骁龙X Elite计算平台的PC将面世。该浏览器的提前问世,有助于骁龙PC问世就获得满血表现。
谷歌高级副总裁Hiroshi Lockheimer表示,此次与高通的合作将有助于确保Chrome用户在当前ARM兼容的PC上获得最佳的浏览体验。