1

我有一个gridview,我试图在选择时提供背景颜色,例如

this.GrdFormat.Rows[int.Parse(FormatFilterarr[1].ToString())].BackColor = System.Drawing.ColorTranslator.FromHtml("#e9e9e9");

一切正常,颜色在它应该的地方渲染。我面临的唯一问题是颜色没有显示。如果我尝试放置在 颜色显示!important的前面。"#e9e9e9"

现在的问题是我应该如何在 asp.net 中从代码隐藏中放置 !important

4

1 回答 1

1

如果你想直接在 style 属性中做,那么你可以使用:

this.GrdFormat.Rows[int.Parse(FormatFilterarr[1].ToString())].Styles.Add("background-color", "#e9e9e9 !important");
于 2013-06-13T06:33:06.930 回答