打印后不应用css

时间:2012-02-21 11:54:33

标签: asp.net html css c#-4.0

我已经使用字符串构建器动态创建了表..

当我运行此页面时,背景颜色应用于'th'但是当打印页面时它不会打印背景颜色。但是,当我将字体颜色应用于'th'时,它会在打印后打印字体颜色。

StringBuilder strhtmlcontent = new StringBuilder();
strhtmlcontent.Append("<table id='mytable' align='Center' style='background-color:#' BORDER-COLLAPSE:collapse cellSpacing=0 rules=all border=1 width=100% ><th width=8% style='background-color:Lime;'>FirstName</th>");
strhtmlcontent.Append("</table>");
ttpContext.Current.Response.Write(strhtmlcontent);
HttpContext.Current.Response.Flush();

感谢。

1 个答案:

答案 0 :(得分:0)