私はグリッドビューを持っています。これにはいくつかの列が含まれます。それは10個のカラムを持ち、8個のカラムだけがヘッダを持ち、2 カラムのヘッダは空であると仮定します。今、私はこのグリッドビューをexcelにエクスポートしています。これには、名前のない2つの列を持つ10個の列がすべて含まれています。 GridViewをexcelにエクスポートしているときに、2つの空のヘッダー列を除外するにはどうすればいいですか?ときに、ユーザー表をあなたがそれらを必要としない場合は、ちょうどあなたのHTMLの表に、これらの2つの列を含めることができませんでした....またはあなたは再書き込みができExcelでグリッドビューをエクスポート中に列をスキップするにはどうすればいいですか?
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();
}
}
}
「HTMLテーブルに2つの列を含めない」という例を教えてください。 – Sandy