1
我已經動態創建與字符串生成器,表後,不應用..CSS打印
當我運行這個頁面背景顏色被應用到「日」,但是當打印的頁面它不打印背景顏色。但是,當我施加字體顏色「日」然後它打印字體顏色印刷後..
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();
感謝。
默認情況下,瀏覽器不會打印背景顏色。這是瀏覽器的設計,與編程無關。 – 2012-02-21 11:55:48
[如何獲得背景圖像使用css打印?]可能的副本(http://stackoverflow.com/questions/5949897/how-to-get-a-background-image-to-print-using-css) – 2012-02-21 11:57:15