如何在网格中删除图像,同时导出到excel
本文关键字:excel 图像 网格 删除 | 更新日期: 2023-09-27 18:13:47
我有一个带有一些数据的网格,其中一列我添加了图像以更好地显示给用户。现在我有一个导出选项导出网格到excel表格。在excel中,我得到的图像没有找到图标。我不想在excel表中向用户显示图像。任何帮助
Response.ClearContent();
Response.Buffer = true;
Response.AddHeader("content-disposition", string.Format("attachment; filename={0}", "123.xls"));
Response.ContentType = "application/ms-excel";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
// gdAclog.AllowPaging = false;
// gdAclog.DataBind();
//Change the Header Row back to white color
gdAclog.HeaderRow.Style.Add("background-color", "#FFFFFF");
//Applying stlye to gridview header cells
for (int i = 0; i < gdAclog.HeaderRow.Cells.Count; i++)
{
gdAclog.HeaderRow.Cells[i].Style.Add("background-color", "#507CD1");
}
int j = 1;
//This loop is used to apply stlye to cells based on particular row
foreach (GridViewRow gvrow in gdAclog.Rows)
{
gvrow.BackColor = Color.White;
if (j <= gdAclog.Rows.Count)
{
if (j % 2 != 0)
{
for (int k = 0; k < gvrow.Cells.Count; k++)
{
gvrow.Cells[k].Style.Add("background-color", "#EFF3FB");
}
}
}
j++;
}
gdAclog.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();
如果您不想显示它,您可以遍历所有单元格并检查单元格的内容是否为图片。if(Table.Cell(row,col).GetType().Equals("msoPicture"))
,然后将单元格的内容设置为null或您想要的任何值。对于图片,如果你仍然需要它,你可以把它保存在一个临时文件或复制到剪贴板(坏的做法)。