我有一个网格视图。其中包含一些列。假设它有10列,只有8列有标题,而2 列标题为空。现在我将这个gridview导出到excel,其中包含所有10列,其中2列没有名称。 如何在将GridView导出到Excel中时排除这2个空标题列。我正在使用以下代码:
protected void btnExportToExcel_Click(object sender, EventArgs e)
{
Export("Customers.xls", this.gdvMessages);
}
private void Export(string fileName, GridView gv)
{
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.AddHeader(
"content-disposition", string.Format("attachment; filename={0}", fileName));
HttpContext.Current.Response.ContentType = "application/ms-excel";
using (StringWriter sw = new StringWriter())
{
using (HtmlTextWriter htw = new HtmlTextWriter(sw))
{
// Create a form to contain the grid
Table table = new Table();
// add the header row to the table
if (gv.HeaderRow != null)
{
PrepareControlForExport(gv.HeaderRow);
table.Rows.Add(gv.HeaderRow);
}
// add each of the data rows to the table
foreach (GridViewRow row in gv.Rows)
{
PrepareControlForExport(row);
table.Rows.Add(row);
}
// add the footer row to the table
if (gv.FooterRow != null)
{
PrepareControlForExport(gv.FooterRow);
table.Rows.Add(gv.FooterRow);
}
// render the table into the htmlwriter
table.RenderControl(htw);
// render the htmlwriter into the response
HttpContext.Current.Response.Write(sw.ToString());
HttpContext.Current.Response.End();
}
}
}
答案 0 :(得分:3)
如果您不需要它们,您可以不在HTML表格中包含这两列......或者当用户按“导出到Excel”按钮并且不包括列时,您可以重新编写表格。您还可以将表加上另一个带有隐藏列的表,并在用户单击“导出到Excel”按钮时从中获取数据。此外,您根本无法显示数据,当用户加载页面时,或单击按钮下载没有列的数据。祝你好运!
已编辑:对于此独占方案,您可能希望以下列方式编辑代码:
// add the header row to the table
if (gv.HeaderRow != null)
{
TableRow tr = new TableRow();
foreach (DataControlFieldHeaderCell c in gv.HeaderRow.Cells)
{
if (c.Text != " ") {
tr.Cells.Add(new TableCell() { Text = c.Text});
}
}
PrepareControlForExport(tr);
table.Rows.Add(tr);
}
代码的这一部分是循环遍历标题行中的每个单元格,如果它是空的,则不包含它。然后将其添加到html表中。如果需要,可以调整此值,以便表的其余部分添加这些列所属的单元格。如果这不是您需要的,可能会有一些屏幕截图显示您的实际Gridview和所需的输出。
祝你好运!答案 1 :(得分:2)
相反,您可以使用以下代码
导出到Excel时隐藏这些列this.myGridview.Columns [0] .Visible = false;
其中“0”是我们要隐藏的列的索引。