Support,
My company has a web application that is designed specifically for IE8 only. Our site has the background color "#EFF2FB" across the content of pages. I placed a ReportViewer on my page and I have set the background color programmatically as so:
System.Drawing.
Color c = System.Drawing.ColorTranslator.FromHtml("#EFF2FB");
ReportViewer1.BackColor = c;
However, there is a white line that I cannot remove from the page. By using the IE8 developer tool (F12), I was able to determine that the white line is coming from a place in the body tag of the IFRAME. Specifically, it is in the ReportViewer1_ReportArea_DocumentMapFrame body tag. I know this, because if set the background color of this element to #EFF2FB the white line goes away.
Is there some way that I can make this the desired color?
Thanks,
Josh