创建asp.net Excel工作簿(Create Excel workbook in asp.ne

2019-07-28 20:47发布

我需要生成一经点击按钮的FL用户的Excel文件。 我用Netoffice之前它工作得很好的桌面应用程序。 但现在我想要做同样的事情用一个asp.net应用程序。 这样,我的服务器代码没有到Excel的客户端副本的访问。 我应该采取什么办法?

Answer 1:

使用EPPlus 。 它可以让你在服务器上创建Excel电子表格。 我用它和它的工作很大。 它支持先进的功能。

using (ExcelPackage pck = new ExcelPackage())
{
    //Create the worksheet
    ExcelWorksheet ws = pck.Workbook.Worksheets.Add("Demo");

    //Load the datatable into the sheet, starting from cell A1. Print the column names on row 1
    ws.Cells["A1"].LoadFromDataTable(tbl, true);

    //Format the header for column 1-3
    using (ExcelRange rng = ws.Cells["A1:C1"])
    {
        rng.Style.Font.Bold = true;
        rng.Style.Fill.PatternType = ExcelFillStyle.Solid;

        //Set Pattern for the background to Solid
        rng.Style.Fill.BackgroundColor.SetColor(Color.FromArgb(79, 129, 189));

        //Set color to dark blue
        rng.Style.Font.Color.SetColor(Color.White);
    }

    //Example how to Format Column 1 as numeric 
    using (ExcelRange col = ws.Cells[2, 1, 2 + tbl.Rows.Count, 1])
    {
        col.Style.Numberformat.Format = "#,##0.00";
        col.Style.HorizontalAlignment = ExcelHorizontalAlignment.Right;
    }

    //Write it back to the client
    Response.Clear();
    Response.AddHeader("content-disposition", "attachment;  filename=file.xlsx");
    Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";                    
    Response.BinaryWrite(pck.GetAsByteArray());
    Response.End();
}


Answer 2:

最灵活,最有可能做的正是你所需要的是要采取一些工作,但它是免费的 - 而真正起作用。 使用该工具包来考察现有的文件,了解如何创建你想要的功能。

打开XML 2.0 SDK



Answer 3:

Netoffice需要在执行机器的MS Office。 请问您的服务器呢?



Answer 4:

您可以尝试简单的HTML表(inlcude HTML,头部和身体标记)。 只是XLS扩展名保存。




Answer 5:

您可以使用一个DataGrid来动态地创建Excel文件。 它不需要Excel中。

public static void ExportDataSetToExcel(DataSet ds, string filename)
{
    HttpResponse response = HttpContext.Current.Response;

    // first let's clean up the response.object
    response.Clear();
    response.Charset = "";

    // set the response mime type for excel
    response.ContentType = "application/vnd.ms-excel";
    response.AddHeader(
        "Content-Disposition",
        "attachment;filename=\"" + filename + "\""
    );

   // create a string writer
   using (StringWriter sw = new StringWriter())
   {
       using (HtmlTextWriter htw = new HtmlTextWriter(sw))
       {
            // instantiate a datagrid
            DataGrid dg = new DataGrid();
            dg.DataSource = ds.Tables[0];
            dg.DataBind();
            dg.RenderControl(htw);
            response.Write(sw.ToString());
            dg.Dispose();
            ds.Dispose();
            response.End();
       }
    }
}


文章来源: Create Excel workbook in asp.net