gpt4 book ai didi

c# - 如何使用 asp.net 隐藏和取消隐藏 Excel 工作表的列

转载 作者:太空狗 更新时间:2023-10-29 20:52:58 25 4
gpt4 key购买 nike

我有一个功能需要实现。

我们正在将网格数据绑定(bind)到 excel 导出,并且工作正常。但是我得到了新的要求,我必须隐藏 excel 导出中的列。之后,当用户打开 Excel 工作表时,他应该可以选择再次取消隐藏我们通过代码隐藏的列。

编辑:

我的 .aspx 页面上有一个 gridview 控件,我使用以下代码将其导出到 excel:

 public static void Export(string filename, GridView grid)
{

HttpContext.Current.Response.Clear();
HttpContext.Current.Response.Buffer = true;
HttpContext.Current.Response.AddHeader("content-disposition",
string.Format("attachment; filename={0}", filename.Replace(" ", "") + ".xls"));
HttpContext.Current.Response.Charset = "";
HttpContext.Current.Response.ContentType = "application/vnd.xls";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
grid.HeaderStyle.BackColor = System.Drawing.Color.Cyan;
GridViewRow row = new GridViewRow(0, 1, DataControlRowType.DataRow, DataControlRowState.Normal);
TableCell cell = new TableCell();
cell.Text = String.Format("{0}", Heading[count]);
cell.ColumnSpan = grid.Rows[1].Cells.Count;
cell.Attributes.Add("style", "background-color: white; color: black;text-align:left;");
cell.Attributes.Add("class", "yellow");
row.Cells.Add(cell);
grid.Controls[0].Controls.AddAt(0, row);
grid.RenderControl(htw);
DataTable dt = new DataTable();
DataRow dr;
dt.Columns.Add(new System.Data.DataColumn(" ", typeof(String)));
dr = dt.NewRow();
dr[0] = " ";
dt.Rows.Add(dr);
GridView gvSpace = new GridView();
gvSpace.DataSource = dt;
gvSpace.GridLines = 0;
gvSpace.DataBind();
gvSpace.RenderControl(htw);
grid.HeaderStyle.BackColor = System.Drawing.Color.Cyan;
HttpContext.Current.Response.Write(@"<style> .sborder { color : Black;border : 1px Solid Black; } .yellow {background-color:yellow;color:black;} </style> ");
HttpContext.Current.Response.Write(sw.ToString());
HttpContext.Current.Response.End();
HttpContext.Current.Response.Flush();
}

要求是在将 gridview 导出到 excel 之前隐藏一些列(在 RowDataBound 或类似事件中)并且导出文件的用户应该能够取消隐藏 在 Microsoft Excel 中打开文件后隐藏的列。由于 GridView 被渲染为 html,我尝试使用 display:none,这隐藏了该列,但我无法取消隐藏它在 Microsoft Excel 中。

那么如何在导出到 excel 之前隐藏 GridView 列,并在 Microsoft excel 中打开文件时取消隐藏这些列?

最佳答案

我在工作中经常使用 excel,使用 EPPlus 更容易。您可以从 NuGet 将它添加到您的项目中。

要使用 EPPlus 隐藏/取消隐藏列,您需要做的就是:

worksheet.Column(columnPosition).Hidden = true/false;

其中 columnPosition 是您要隐藏的列的索引。

我在工作中写了一个方法,将 gridview 作为 peram 并将其转换为数据表。您可以在 onrowdatabound 事件中隐藏 gridview 列并将 gridview 传递给该方法。然后您可以使用 EPPlus 生成 excel 文件并在需要时取消隐藏该列(它可能已经取消隐藏)。

如果你想要这个方法,我可以在下次工作时用它更新这篇文章。

关于c# - 如何使用 asp.net 隐藏和取消隐藏 Excel 工作表的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17440634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com