GridViewをExcelファイルにエクスポートしていますが、ファイルを開いたときに最初にフォーマットのタイプと拡張子が一致しないというエラーが表示され、開いたときにページ全体がExcelファイル、グリッドビューだけではありません。GridViewをExcelにエクスポートするにはどうすればよいですか?
enter code here
protected void ExportToExcel(object sender, EventArgs e)
{
try
{
Response.Clear();
Response.Buffer = true;
Response.AddHeader("content-disposition", "attachment;filename=GridViewExport.xls");
Response.Charset = "";
Response.ContentType = "application/vnd.ms-excel";
using (StringWriter sw = new StringWriter())
{
HtmlTextWriter hw = new HtmlTextWriter(sw);
//To Export all pages
gridCustomer.AllowPaging = false;
//this.gridCustInfoBind(1);
gridCustAllInfoBind(1);
gridCustomer.HeaderRow.BackColor = Color.White;
foreach (TableCell cell in gridCustomer.HeaderRow.Cells)
{
cell.BackColor = gridCustomer.HeaderStyle.BackColor;
}
foreach (GridViewRow row in gridCustomer.Rows)
{
row.BackColor = Color.White;
foreach (TableCell cell in row.Cells)
{
if (row.RowIndex % 2 == 0)
{
cell.BackColor = gridCustomer.AlternatingRowStyle.BackColor;
}
else
{
cell.BackColor = gridCustomer.RowStyle.BackColor;
}
cell.CssClass = "textmode";
}
}
gridCustomer.RenderControl(hw);
//style to format numbers to string
string style = @"<style> .textmode { } </style>";
Response.Write(style);
Response.Output.Write(sw.ToString());
Response.Flush();
Response.End();
}
}
catch (Exception ex)
{
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alert", "alert('Exception Message: " + ex.Message.Replace("'", "").Replace("\"", "") + "');", true);
}
}
生成されたファイルの内容は、あなたが私のコードを変更することができ、.XLSに変換する方法.htmlを.XLS – Slai
ではありませんので。 –