C#将html table 导出成excel实例
程序员文章站
2022-05-24 07:57:35
...
public void ProcessRequest (HttpContext context) { string elxStr = "<table><tbody><tr><td>1</td><td>11</td></tr><tr><td>2</td><td>22</td></tr></tbody></table>"; context.Response.Clear(); context.Response.Buffer = true; context.Response.AppendHeader("Content-Disposition", "attachment;filename=" + DateTime.Now.ToString("yyyyMMdd") + ".xls"); context.Response.ContentEncoding = System.Text.Encoding.UTF8; context.Response.ContentType = "application/vnd.ms-excel"; context.Response.Write(elxStr); context.Response.End(); } public bool IsReusable { get { return false; } }
更多C#将html table 导出成excel实例相关文章请关注PHP中文网!
上一篇: python算法
下一篇: 关于js执行顺序解决思路
推荐阅读
-
C#将html table 导出成excel实例
-
C#将html table 导出成excel实例
-
C# 将datatable导出成Excel
-
JS将表单导出成EXCEL的实例代码_javascript技巧
-
table2excel-将HTML表格内容导出到Excel中_html/css_WEB-ITnose
-
C#将html table 导出成excel实例
-
table2excel-将HTML表格内容导出到Excel中_html/css_WEB-ITnose
-
C#将html table 导出成excel实例
-
C#将html table 导出成excel实例
-
C#将html table 导出成excel实例