发布网友 发布时间:2022-05-23 21:02
共3个回答
热心网友 时间:2023-11-27 07:11
选中要加色的-填充颜色就可以了。追问这些数据是后台c#代码读出来的,要读出来的时候就加上颜色,不是导出之后excel加颜色。
热心网友 时间:2023-11-27 07:12
public static void dgExport_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) { if (e.Item.ItemIndex != -1) { if (e.Item.Cells[0].Text.Contains("汇总")) { e.Item.BackColor = System.Drawing.Color.Yellow; } } }热心网友 时间:2023-11-27 07:12
设置backgroundColor就可以了