epplus输出成thml

Posted coolyylu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了epplus输出成thml相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using OfficeOpenXml;
using System.IO;
using EPPlus.html;
namespace testepplus
{
    public partial class Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string zpath = Server.MapPath("/") + "test1.xlsx";
            FileInfo zfile = new FileInfo(zpath);

            using (ExcelPackage excel = new ExcelPackage(zfile,"123"))
            {
                //excel.SaveAs(new FileInfo(Server.MapPath("/") + "test1.xlsx"), "123");
                Response.Write(EPPlus.Html.EPPlusExtensions.ToHtml(excel.Workbook.Worksheets[3]));

            }

        }
    }
}

 

 

fx要4.5+ ,需要huget package  epplus ,epplus.html   

 

可以从https://github.com/fitogram/EPPlus.Html 下载源码更改fx为4.0

 

epplus.html 0.20版本不支持excel里的图片

以上是关于epplus输出成thml的主要内容,如果未能解决你的问题,请参考以下文章

Excel 中的数字格式不适用于 EPPlus

Unity中基于EPPLUS的Excel转换以及Json数据读取

thml学习总结

WPF系列教程——(四)使用EPPlus操作Excel

将vscode打造成无敌的IDE添加自定义的snippet

将vscode打造成无敌的IDE添加自定义的snippet